presence/data/LocalData/Entity/Presence.cs
2024-11-18 15:42:33 +03:00

18 lines
416 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; }
public int GroupId { get; set; }
public int LessonNumber { get; set; }
public DateTime Date { get; set; }
public bool IsAttedance { get; set; }
}
}