19 lines
478 B
C#
19 lines
478 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
using System.Threading.Tasks;
|
|||
|
|
|||
|
namespace 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; }
|
|||
|
}
|
|||
|
}
|