Release v1.0.0 #16

Merged
Wesser merged 492 commits from release/v1.0.0 into master 2025-02-12 09:19:32 +03:00
49 changed files with 869 additions and 1 deletions
Showing only changes of commit bd3a11486d - Show all commits

View File

@ -9,5 +9,6 @@ public class Faculty
public int? CampusId { get; set; } public int? CampusId { get; set; }
public Campus? Campus { get; set; } public Campus? Campus { get; set; }
public List<Group>? Groups { get; set; } public List<Group>? Groups { get; set; }
} }

View File

@ -9,5 +9,6 @@ public class Group
public int? FacultyId { get; set; } public int? FacultyId { get; set; }
public Faculty? Faculty { get; set; } public Faculty? Faculty { get; set; }
public List<Day>? Days { get; set; }
public List<Lesson>? Lessons { get; set; }
} }

View File

@ -7,7 +7,8 @@ public class LectureHall
public int Id { get; set; } public int Id { get; set; }
public required string Name { get; set; } public required string Name { get; set; }
public List<ProfessorToLesson>? ProfessorToLessons { get; set; }
public int CampusId { get; set; } public int CampusId { get; set; }
public Campus? Campus { get; set; } public Campus? Campus { get; set; }
public List<LessonAssociation>? LessonAssociations { get; set; }
} }

View File

@ -8,5 +8,5 @@ public class Professor
public required string Name { get; set; } public required string Name { get; set; }
public string? AltName { get; set; } public string? AltName { get; set; }
public List<ProfessorToLesson>? ProfessorToLesson { get; set; } public List<LessonAssociation>? LessonAssociations { get; set; }
} }

View File

@ -8,5 +8,5 @@ public class TypeOfOccupation
public required string ShortName { get; set; } public required string ShortName { get; set; }
public string? FullName { get; set; } public string? FullName { get; set; }
public List<LessonToTypeOfOccupation>? Lessons { get; set; } public List<Lesson>? Lessons { get; set; }
} }