mirror of
https://github.com/sphildreth/roadie
synced 2024-11-23 12:43:13 +00:00
12 lines
No EOL
300 B
C#
12 lines
No EOL
300 B
C#
using Roadie.Library.Models;
|
|
using Roadie.Library.Models.Pagination;
|
|
using Roadie.Library.Models.Users;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Roadie.Api.Services
|
|
{
|
|
public interface IGenreService
|
|
{
|
|
Task<PagedResult<GenreList>> List(User roadieUser, PagedRequest request);
|
|
}
|
|
} |