2024-11-16 12:02:17 +00:00
|
|
|
using System;
|
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
using System.Text;
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
|
|
namespace presence.domain.Models
|
|
|
|
{
|
|
|
|
public class Presence{
|
2024-12-23 11:56:27 +00:00
|
|
|
public int Id { get; set;}
|
2024-11-16 12:02:17 +00:00
|
|
|
public required DateOnly Date {get; set;}
|
|
|
|
public int ClassNumber {get; set;}
|
|
|
|
public bool IsAttendence {get; set;}
|
|
|
|
public required User User {get; set;}
|
|
|
|
}
|
|
|
|
}
|