semesterWork/Presence.Desktop/Models/PresencePresenter.cs

21 lines
562 B
C#
Raw Permalink Normal View History

2024-12-12 19:47:32 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
2024-12-13 05:47:52 +00:00
using Presense.Desktop.Models;
2024-12-12 19:47:32 +00:00
namespace Presence.Desktop.Models
{
2024-12-13 05:47:52 +00:00
public class PresencePresenter
2024-12-12 19:47:32 +00:00
{
2024-12-13 05:47:52 +00:00
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; }
2024-12-12 19:47:32 +00:00
}
}