Mega_New_Presence/presence_new/Data/LocalData/Entity/Presence.cs

9 lines
273 B
C#
Raw Normal View History

2024-11-01 07:40:53 +00:00
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; }
}