MireaBackend/Domain/Schedule/Lesson.cs

21 lines
620 B
C#
Raw Normal View History

2024-01-26 07:36:13 +03:00
using System;
using System.Collections.Generic;
2024-01-07 02:00:00 +03:00
namespace Mirea.Api.DataAccess.Domain.Schedule;
public class Lesson
{
public int Id { get; set; }
public bool IsEven { get; set; }
2024-01-26 07:36:13 +03:00
public DayOfWeek DayOfWeek { get; set; }
public int PairNumber { get; set; }
2024-05-19 11:49:03 +03:00
public bool? IsExcludedWeeks { get; set; }
2024-01-07 02:00:00 +03:00
2024-01-26 07:36:13 +03:00
public int GroupId { get; set; }
public Group? Group { get; set; }
public int DisciplineId { get; set; }
public Discipline? Discipline { get; set; }
public List<LessonAssociation>? LessonAssociations { get; set; }
2024-05-19 11:49:03 +03:00
public List<SpecificWeek>? SpecificWeeks { get; set; }
2024-01-07 02:00:00 +03:00
}