presence/data/LocalData/Entity/Presence.cs

19 lines
418 B
C#
Raw Permalink Normal View History

2024-11-11 09:07:11 +00:00

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace domain.Models
{
public class PresenceLocalEntity
{
2024-11-13 09:00:26 +00:00
public Guid UserGuid { get; set; }
2024-11-11 09:07:11 +00:00
public int GroupId { get; set; }
public int LessonNumber { get; set; }
public DateTime Date { get; set; }
public bool IsAttedance { get; set; }
}
}