pr1/Demo/Data/LocalData/Entity/Presence.cs
2024-11-17 19:24:01 +03:00

9 lines
273 B
C#

public class PresenceLocalEntity
{
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; }
}