mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 14:54:11 +00:00
12 lines
No EOL
327 B
C#
12 lines
No EOL
327 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, bool? doRandomize = false);
|
|
}
|
|
} |