using System.Collections.Generic;
using System.Threading.Tasks;
using SessionCompanion.Database.Tables;
using SessionCompanion.Services.Base;
using SessionCompanion.ViewModels.CharacterSpellSlotsViewModels;

namespace SessionCompanion.Services.Interfaces
{
    public interface ICharacterSpellSlotsService : IServiceBase<CharacterSpellSlotsViewModel,CharacterSpellSlots>
    {
    }
}