19 lines
404 B
C#
19 lines
404 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Data.RemoteData.DAO
|
|
{
|
|
public class PresnceDao
|
|
{
|
|
|
|
public Guid UserGuid { get; set; }
|
|
public bool IsAttendensy { get; set; } = true;
|
|
public int LessonNumber { get; set; }
|
|
public DateOnly Date { get; set; }
|
|
public UserDao userDao { get; set; }
|
|
}
|
|
}
|