slarny4/Demo1/Domain/Models/Presence.cs

14 lines
384 B
C#
Raw Permalink Normal View History

2024-10-23 09:52:43 +00:00
using System;
2024-10-21 22:57:01 +00:00
2024-10-24 08:50:32 +00:00
namespace AttendanceApp.Domain.Models
2024-10-21 22:57:01 +00:00
{
public class Presence
{
2024-10-24 08:50:32 +00:00
public DateTime ClassDate { get; set; }
public int ClassNumber { get; set; }
public bool IsPresent { get; set; }
public Guid UserId { get; set; }
2024-10-28 12:42:04 +00:00
public bool WasPresent { get; internal set; }
public int LessonNumber { get; internal set; }
2024-10-21 22:57:01 +00:00
}
2024-10-24 08:50:32 +00:00
}