slarny4/Demo1/Domain/Models/Presence.cs

12 lines
275 B
C#
Raw 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-21 22:57:01 +00:00
}
2024-10-24 08:50:32 +00:00
}