presence/data/LocalData/Entity/Presence.cs
2024-11-11 12:07:11 +03:00

19 lines
451 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace domain.Models
{
public class PresenceLocalEntity
{
public Guid UserGuid { get; set; } // Замените int на Guid
public int GroupId { get; set; }
public int LessonNumber { get; set; }
public DateTime Date { get; set; }
public bool IsAttedance { get; set; }
}
}