pr1/presence/data/LocalData/Entity/Presence.cs

16 lines
405 B
C#
Raw Normal View History

2024-12-19 17:36:57 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Demo.domain.Models
2024-10-19 21:12:06 +00:00
{
2024-12-19 17:36:57 +00:00
public class PresenceLocalEntity
{
public required DateOnly Date { get; set; }
public int ClassNumber { get; set; }
public bool IsAttendence { get; set; } = true;
public required Guid UserGuid { get; set; }
}
}