MireaBackend/Domain/Schedule/LessonAssociation.cs

16 lines
531 B
C#
Raw Normal View History

2024-01-07 02:00:00 +03:00
namespace Mirea.Api.DataAccess.Domain.Schedule;
2024-01-26 07:38:26 +03:00
public class LessonAssociation
2024-01-07 02:00:00 +03:00
{
public int Id { get; set; }
public string? LinkToMeet { get; set; }
2024-05-19 11:49:03 +03:00
public int TypeOfOccupationId { get; set; }
public TypeOfOccupation? TypeOfOccupation { get; set; }
2024-01-07 02:00:00 +03:00
public int LessonId { get; set; }
public Lesson? Lesson { get; set; }
public int? ProfessorId { get; set; }
public Professor? Professor { get; set; }
public int? LectureHallId { get; set; }
public LectureHall? LectureHall { get; set; }
}