Demo/Data/RemoteData/RemoteDataBase/DAO/Presence.cs

15 lines
395 B
C#
Raw Normal View History

2024-10-24 11:13:46 +00:00
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace Posechaemost.Data.RemoteData.RemoteDataBase.DAO
{
public class PresenceDao
{
public required DateOnly Date {get; set;}
public int ClassNumber {get; set;}
public bool IsAttendence {get; set;} = true;
public required UserDao User {get; set;}
}
}