refactor: move database-related projects to separate folder
This commit is contained in:
10
SqlData/Domain/Schedule/SpecificWeek.cs
Normal file
10
SqlData/Domain/Schedule/SpecificWeek.cs
Normal file
@ -0,0 +1,10 @@
|
||||
namespace Mirea.Api.DataAccess.Domain.Schedule;
|
||||
|
||||
public class SpecificWeek
|
||||
{
|
||||
public int Id { get; set; }
|
||||
public int WeekNumber { get; set; }
|
||||
|
||||
public int LessonId { get; set; }
|
||||
public Lesson? Lesson { get; set; }
|
||||
}
|
Reference in New Issue
Block a user