13 lines
388 B
C#
13 lines
388 B
C#
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>
|
|
{
|
|
}
|
|
}
|