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; }
}