Mega_New_Presence/presence_new/Data/LocalData/Entity/Presence.cs
Class_Student 202f236834 new
2024-11-01 10:40:53 +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; }
}