presence/data/LocalData/Entity/Presence.cs
2024-12-20 12:16:16 +03:00

22 lines
462 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 int Id { get; set; }
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; }
}
}