xxxproject/Demo/Data/Entity/Presence.cs
Class_Student 6b9b5a424f init
2024-10-30 12:11:19 +03:00

18 lines
406 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Demo.Data.Entity
{
public class PresenceLocalEntity
{
public required Guid UserGuid { get; set; }
public bool IsAttedance { get; set; }
public required DateOnly Date { get; set; }
public required int LessonNumber { get; set; }
}
}