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

19 lines
465 B
C#
Raw Normal View History

2024-11-04 20:16:00 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Demo.domain.Models
{
public class PresenceLocalEntity
{
public Guid UserGuid { get; set; }
public required int GroupId { get; set; }
public bool IsAttedance { get; set; } = true;
public required DateTime Date { get; set; }
public required int LessonNumber { get; set; }
}
}