28 lines
629 B
C#
28 lines
629 B
C#
namespace presence_client.DTO;
|
|
|
|
public class PresenceQuery
|
|
{
|
|
public string GroupName { get; set; }
|
|
}
|
|
|
|
public class PresencePost
|
|
{
|
|
public string GroupName { get; set; }
|
|
public List<PresenceUserPost> 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; }
|
|
} |