Raspisanie/data/LocalData/Entity/Presence.cs

12 lines
300 B
C#
Raw Permalink Normal View History

2024-12-11 08:30:05 +00:00
namespace domain.Models
{
public class PresenceLocalEntity
{
public Guid UserGuid { get; set; }
public int GroupId { get; set; }
public int LessonNumber { get; set; }
public DateTime Date { get; set; }
public bool IsAttedance { get; set; }
}
}