Mega_New_Presence/presence_new/Data/RemoteData/RemoteDataBase/DAO/Presence.cs

20 lines
493 B
C#
Raw Normal View History

2024-11-01 07:40:53 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Demo.Data.RemoteData.RemoteDataBase.DAO
{
public class PresenceDao
{
2024-11-05 18:36:49 +00:00
public int Id { get; set; }
2024-11-01 07:40:53 +00:00
public Guid UserGuid { get; set; }
public bool IsAttedance { get; set; } = true;
public DateOnly Date { get; set; }
public int LessonNumber { get; set; }
2024-11-06 09:07:50 +00:00
public virtual UserDao? UserDao { get; set; }
2024-11-05 18:36:49 +00:00
2024-11-01 07:40:53 +00:00
}
}