13 lines
331 B
C#
13 lines
331 B
C#
|
using System;
|
|||
|
|
|||
|
namespace Demo.Data.LocalData.Entity
|
|||
|
{
|
|||
|
public class Presence
|
|||
|
{
|
|||
|
public required LocalUser Student { get; set; } // добавлено required
|
|||
|
public bool IsPresent { get; set; } = true;
|
|||
|
public DateOnly AttendanceDate { get; set; }
|
|||
|
public int LessonId { get; set; }
|
|||
|
}
|
|||
|
}
|