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

13 lines
315 B
C#
Raw Permalink Normal View History

2024-10-19 19:38:28 +00:00
using System;
namespace Demo.domain.Models
{
internal class PresenceLocalEntity
{
public required Guid UserGuid { get; set; }
public bool IsAttedance { get; set; } = true;
public required DateOnly Date { get; set; }
public required int LessonNumber { get; set; }
}
}