slarny4/Demo1/Data/LocalData/Entity/Presence.cs

11 lines
337 B
C#
Raw Permalink Normal View History

2024-11-25 04:33:26 +00:00
namespace Demo.Data.LocalData.Entity
{
public class Presence
{
public Guid Id { get; set; } // Убедитесь, что тип Guid
public DateTime Date { get; set; }
public int LessonNumber { get; set; }
public bool IsAttendance { get; set; }
public Guid UserId { get; set; }
}
}