xxxproject/Demo/Data/Entity/Presence.cs

18 lines
406 B
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-10-30 09:11:19 +00:00
namespace Demo.Data.Entity
{
2024-10-23 09:42:17 +00:00
public class PresenceLocalEntity
{
public required Guid UserGuid { get; set; }
2024-10-30 09:11:19 +00:00
public bool IsAttedance { get; set; }
public required DateOnly Date { get; set; }
public required int LessonNumber { get; set; }
}
}