From 9e4320f2d363889ef20182c3e6ba6a4145da5a39 Mon Sep 17 00:00:00 2001 From: Polianin Nikita Date: Fri, 26 Jan 2024 07:38:26 +0300 Subject: [PATCH] refactor: give the exact name --- Domain/Schedule/{ProfessorToLesson.cs => LessonAssociation.cs} | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) rename Domain/Schedule/{ProfessorToLesson.cs => LessonAssociation.cs} (92%) diff --git a/Domain/Schedule/ProfessorToLesson.cs b/Domain/Schedule/LessonAssociation.cs similarity index 92% rename from Domain/Schedule/ProfessorToLesson.cs rename to Domain/Schedule/LessonAssociation.cs index 17b287e..89b5651 100644 --- a/Domain/Schedule/ProfessorToLesson.cs +++ b/Domain/Schedule/LessonAssociation.cs @@ -1,11 +1,10 @@ namespace Mirea.Api.DataAccess.Domain.Schedule; -public class ProfessorToLesson +public class LessonAssociation { public int Id { get; set; } public string? LinkToMeet { get; set; } - public int LessonId { get; set; } public Lesson? Lesson { get; set; } public int? ProfessorId { get; set; }