12 lines
245 B
C#
12 lines
245 B
C#
|
|
using System.Text.Json.Serialization;
|
||
|
|
|
||
|
|
namespace CPATapi.Server.Models;
|
||
|
|
|
||
|
|
public class Availability
|
||
|
|
{
|
||
|
|
[JsonPropertyName("user")]
|
||
|
|
public string User { get; set; }
|
||
|
|
[JsonPropertyName("loggedIn")]
|
||
|
|
public bool LoggedIn { get; set; }
|
||
|
|
}
|