presence/data/RemoteData/RemoteDataBase/DAO/Excel.cs

19 lines
538 B
C#
Raw Normal View History

2024-11-11 09:07:11 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace data.RemoteData.RemoteDataBase.DAO
{
2024-11-13 09:00:26 +00:00
public class Excel //<2F><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>
2024-11-11 09:07:11 +00:00
{
public Guid UserGuid { get; set; }
public string UserName { get; set; }
public string FullName { get; set; }
public DateOnly Date { get; set; }
public bool IsAttedance { get; set; }
public int LessonNumber { get; set; }
public string GroupName { get; set; }
}
}