using SessionCompanion.Database.Repositories.Base;
using SessionCompanion.Database.Tables;
using System;
using System.Collections.Generic;
using System.Text;

namespace SessionCompanion.Database.Repositories
{
    public class LegendaryActionRepository : Repository<LegendaryAction>, IRepository<LegendaryAction>
    {
        public LegendaryActionRepository(ApplicationDbContext _dbContext) : base(_dbContext)
        { }
    }
}