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
|
|
|
|
{
|
2024-11-11 20:02:21 +00:00
|
|
|
public int PresenceId { get; set; }
|
|
|
|
public DateOnly Date {get; set;}
|
2024-10-24 11:13:46 +00:00
|
|
|
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-11-11 20:02:21 +00:00
|
|
|
public 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
|
|
|
}
|
|
|
|
}
|