presence/data/RemoteData/DAO/Presence.cs

20 lines
438 B
C#
Raw Normal View History

2024-11-08 08:08:54 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Data.RemoteData.DAO
{
internal class PresenceDao
{
public Guid UserGuid { get; set; }
public bool IsAttedance { get; set; } = true;
public DateOnly Date { get; set; }
public int LessonNumber { get; set; }
public virtual UserDao UserDao { get; set; }
}
}