Demo/Data/RemoteData/RemoteDataBase/DAO/Presence.cs

11 lines
312 B
C#
Raw Normal View History

2024-10-28 03:24:11 +00:00
namespace Demo.Data.RemoteData.RemoteDataBase.DAO
{
public class PresenceDAO
{
public Guid UserGuid {get; set; }
public bool IsAttedance {get; set; }
public DateOnly Date {get; set; }
public int LessonNumber {get; set; }
public UserDAO userDAO {get; set; }
2024-10-24 20:41:31 +00:00
}
}