refactor: delete due to merging with lesson

This commit is contained in:
Polianin Nikita 2024-01-26 07:38:55 +03:00
parent 9e4320f2d3
commit 28e862c670

View File

@ -1,11 +0,0 @@
namespace Mirea.Api.DataAccess.Domain.Schedule;
public class LessonToTypeOfOccupation
{
public int Id { get; set; }
public int LessonId { get; set; }
public Lesson? Lesson { get; set; }
public int TypeOfOccupationId { get; set; }
public TypeOfOccupation? TypeOfOccupation { get; set; }
}