FinalPresenceLexa/data/RemoteData/RemoteDatabase/DAO/UserPresence.cs

9 lines
236 B
C#
Raw Permalink Normal View History

2025-04-28 08:51:01 +00:00
namespace data.RemoteData.RemoteDataBase.DAO;
public class UserPresence
{
public string FIO { get; set; }
public int LessonNumber { get; set; }
public DateOnly Date { get; set; }
public bool isAttendance { get; set; }
}