Presence_Desktop/data/RemoteData/DAO/Excel.cs

18 lines
403 B
C#
Raw Normal View History

2024-12-23 11:20:09 +00:00
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;
}
}