23 lines
751 B
C#
23 lines
751 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
|
|||
|
namespace Demo.Domain.Models
|
|||
|
{
|
|||
|
public class LessonPresence
|
|||
|
{
|
|||
|
public Guid UserId { get; set; } // Идентификатор пользователя
|
|||
|
public DateTime Date { get; set; } // Дата посещаемости
|
|||
|
public int GroupID { get; set; } // ID группы
|
|||
|
public List<bool> Lessons { get; set; } // Список посещаемости по занятиям
|
|||
|
|
|||
|
// Конструктор класса
|
|||
|
public LessonPresence(Guid userId, DateTime date, int groupId, List<bool> lessons)
|
|||
|
{
|
|||
|
UserId = userId;
|
|||
|
Date = date;
|
|||
|
GroupID = groupId;
|
|||
|
Lessons = lessons;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|