MireaBackend/Domain/Schedule/Discipline.cs

11 lines
240 B
C#
Raw Normal View History

2024-01-26 07:37:28 +03:00
using System.Collections.Generic;
namespace Mirea.Api.DataAccess.Domain.Schedule;
public class Discipline
{
public int Id { get; set; }
public required string Name { get; set; }
public List<Lesson>? Lessons { get; set; }
}