9 lines
236 B
C#
9 lines
236 B
C#
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; }
|
|
} |