presence/data/RemoteData/DAO/Presence.cs

19 lines
404 B
C#
Raw Permalink 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
{
2024-11-08 08:29:02 +00:00
public class PresnceDao
{
2024-11-08 08:08:54 +00:00
2024-11-08 08:29:02 +00:00
public Guid UserGuid { get; set; }
public bool IsAttendensy { get; set; } = true;
public int LessonNumber { get; set; }
public DateOnly Date { get; set; }
public UserDao userDao { get; set; }
}
2024-11-08 08:08:54 +00:00
}