using System.Collections.Generic; namespace Mirea.Api.DataAccess.Domain.Schedule; public class Lesson { public int Id { get; set; } public bool IsEven { get; set; } public required string Discipline { get; set; } public List? TypeOfOccupations { get; set; } public List? ProfessorToLesson { get; set; } public Day? Day { get; set; } }