using Microsoft.EntityFrameworkCore;
using Mirea.Api.DataAccess.Domain.Schedule;

namespace Mirea.Api.DataAccess.Application.Interfaces.DbContexts.Schedule;

public interface ILessonAssociationDbContext : IDbContextBase
{
    DbSet<LessonAssociation> LessonAssociations { get; set; }
}