14 lines
336 B
C#
14 lines
336 B
C#
using SessionCompanion.Database.Tables;
|
|
using SessionCompanion.Services.Base;
|
|
using SessionCompanion.ViewModels.SpellViewModels;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace SessionCompanion.Services.Interfaces
|
|
{
|
|
public interface ISpellService : IServiceBase<SpellViewModel, Spell>
|
|
{
|
|
}
|
|
}
|