15 lines
397 B
C#
15 lines
397 B
C#
using System.ComponentModel.DataAnnotations.Schema;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace CPATapi.Server.Models;
|
|
|
|
public class Availability
|
|
{
|
|
[JsonPropertyName("user")]
|
|
public required string MA_USER_NAME { get; set; }
|
|
[JsonPropertyName("loggedIn")]
|
|
public bool LOGGED_IN { get; set; }
|
|
[JsonPropertyName("extension")]
|
|
public string? US_EXTENSION { get; set; }
|
|
}
|