pr1/Demo/Data/LocalData/Entity/Presence.cs

9 lines
273 B
C#
Raw Normal View History

2024-11-17 16:24:01 +00:00
public class PresenceLocalEntity
2024-10-19 21:12:06 +00:00
{
2024-11-17 16:24:01 +00:00
public Guid UserGuid { get; set; } // Заменить int на Guid
public int GroupId { get; set; }
public int LessonNumber { get; set; }
public DateTime Date { get; set; }
public bool IsAttedance { get; set; }
2024-10-19 21:12:06 +00:00
}