19 lines
485 B
C#
19 lines
485 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Demo.Data.RemoteData.RemoteDataBase.DAO
|
|
{
|
|
public class PresenceDao
|
|
{
|
|
public int PresenceId { get; set; }
|
|
public int UserId { get; set; }
|
|
public bool IsAttedance { get; set; } = true;
|
|
public DateOnly Date { get; set; }
|
|
public int LessonNumber { get; set; }
|
|
public int GroupId { get; set; }
|
|
}
|
|
}
|