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;
|
2024-11-06 04:10:09 +00:00
|
|
|
public int UserId {get; set;}
|
2024-10-24 11:13:46 +00:00
|
|
|
public required UserDao User {get; set;}
|
2024-11-06 04:10:09 +00:00
|
|
|
public int GroupId {get; set;}
|
2024-10-24 11:13:46 +00:00
|
|
|
}
|
|
|
|
}
|