using Liber_Incantamentum.Application.DTOs.Filter; using Liber_Incantamentum.Application.DTOs.General; namespace Liber_Incantamentum.Application.Interfaces.Generals { public interface ISpellService { Task?> GetAllSpellAsync(SpellDtoFilter filter); Task UpdateSpellAsync(SpellDtoFilter dto); Task DeleteSpellAsync(Guid id); Task AddSpellAsync(SpellDto dto); } }