14 lines
409 B
C#
14 lines
409 B
C#
|
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; }
|
|||
|
}
|