20 lines
438 B
C#
20 lines
438 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Data.RemoteData.DAO
|
|
{
|
|
internal class PresenceDao
|
|
{
|
|
public Guid UserGuid { get; set; }
|
|
public bool IsAttedance { get; set; } = true;
|
|
public DateOnly Date { get; set; }
|
|
|
|
public int LessonNumber { get; set; }
|
|
|
|
public virtual UserDao UserDao { get; set; }
|
|
}
|
|
}
|