namespace presence_client.DTO; public class PresenceQuery { public string GroupName { get; set; } } public class PresencePost { public string GroupName { get; set; } public List Users { get; set; } } public class PresenceUserPost { public string UserGuid { get; set; } public int LessonNumber { get; set; } public DateTime Date { get; set; } public bool IsAttendance { get; set; } } public class PresenceUpdate { public string UserGuid { get; set; } public int LessonNumber { get; set; } public DateTime Date { get; set; } public bool IsAttendance { get; set; } }