using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Presense.Desktop.Models; namespace Presence.Desktop.Models { public class PresencePresenter { public int AttendanceId { get; set; } public DateOnly Date { get; set; } public string Subject { get; set; } public string StudentFullName { get; set; } public string GroupName { get; set; } public string PresenceType { get; set; } public int LessonNumber { get; set; } } }