18 lines
403 B
C#
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;
|
|
}
|
|
} |