16 lines
364 B
C#
16 lines
364 B
C#
using Portfolio.Domain.Features.Pokemon_Subskills;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Portfolio.Application.Services.PokemonSubskillService
|
|
{
|
|
public interface IPokemonSubskillService
|
|
{
|
|
Task<List<PokemonSubskill>> GetAllPokemonSubskillsAsync();
|
|
|
|
}
|
|
}
|