Presence_Desktop/data/RemoteData/DAO/Excel.cs
2024-12-23 14:20:09 +03:00

18 lines
403 B
C#

namespace data.RemoteData.DAO
{
public class Excel
{
public Guid UserGuid { get; set; }
public string FullName { get; set; }
public string UserName { get; set; }
public DateOnly Date { get; set; }
public bool IsAttedance { get; set; }
public int LessonNumber { get; set; }
public string GroupName { get; set; } = string.Empty;
}
}