MireaBackend/Domain/Schedule/Lesson.cs

14 lines
409 B
C#
Raw Normal View History

2024-01-07 02:00:00 +03:00
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<LessonToTypeOfOccupation>? TypeOfOccupations { get; set; }
public List<ProfessorToLesson>? ProfessorToLesson { get; set; }
public Day? Day { get; set; }
}