13 lines
419 B
C#
13 lines
419 B
C#
|
namespace data.RemoteData.RemoteDataBase.DAO;
|
||
|
|
||
|
public class AttendanceUpdateDTO
|
||
|
{
|
||
|
public int userId { get; set; }
|
||
|
public int groupId { get; set; }
|
||
|
public DateOnly Date { get; set; }
|
||
|
public int LessonNumber { get; set; }
|
||
|
public int Student { get; set; }
|
||
|
public bool Status { get; set; }
|
||
|
public string NewTypeAttendance => Status ? "Присутствовал" : "Отсутствовал";
|
||
|
|
||
|
}
|