11 lines
255 B
C#
11 lines
255 B
C#
using System;
|
|
|
|
public class PresnceDao
|
|
{
|
|
public Guid Guid { get; set; }
|
|
public bool IsAttendensy { get; set; } = true;
|
|
public int LessonNumber { get; set; }
|
|
public DateOnly Date { get; set; }
|
|
public UserDao userDao { get; set; }
|
|
}
|