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

20 lines
488 B
C#
Raw Permalink 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
{
public class PresenceDao
{
public int Id { get; set; }
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; }
}
}