2024-12-05 07:31:49 +00:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Presence.API.Response
|
|
|
|
{
|
|
|
|
public class PresenceResponse
|
|
|
|
{
|
|
|
|
public int Id { get; set; }
|
|
|
|
public int StudentId { get; set; }
|
|
|
|
public string StudentName { get; set; }
|
|
|
|
public int SubjectId { get; set; }
|
|
|
|
public string SubjectName { get; set; }
|
2024-12-10 05:26:38 +00:00
|
|
|
public int TrafficId { get; set; }
|
|
|
|
public string TrafficName { get; set; }
|
|
|
|
public int LessonNumber { get; set; }
|
2024-12-05 07:31:49 +00:00
|
|
|
public DateOnly Date { get; set; }
|
|
|
|
}
|
|
|
|
}
|