2026-04-13 10:42:11 +02:00
|
|
|
using System.ComponentModel.DataAnnotations.Schema;
|
2026-03-19 13:35:53 +01:00
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
|
|
namespace CPATapi.Server.Models;
|
|
|
|
|
|
|
|
|
|
public class Availability
|
|
|
|
|
{
|
|
|
|
|
[JsonPropertyName("user")]
|
2026-04-13 10:42:11 +02:00
|
|
|
public required string MA_USER_NAME { get; set; }
|
2026-03-19 13:35:53 +01:00
|
|
|
[JsonPropertyName("loggedIn")]
|
2026-04-13 10:42:11 +02:00
|
|
|
public bool LOGGED_IN { get; set; }
|
|
|
|
|
[JsonPropertyName("extension")]
|
|
|
|
|
public string? US_EXTENSION { get; set; }
|
2026-03-19 13:35:53 +01:00
|
|
|
}
|