mirror of
https://github.com/sphildreth/roadie
synced 2024-11-23 12:43:13 +00:00
13 lines
No EOL
410 B
C#
13 lines
No EOL
410 B
C#
using Roadie.Library.Models.Collections;
|
|
using Roadie.Library.Models.Pagination;
|
|
using Roadie.Library.Models.Users;
|
|
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Roadie.Api.Services
|
|
{
|
|
public interface ICollectionService
|
|
{
|
|
Task<PagedResult<CollectionList>> List(User roadieUser, PagedRequest request, bool? doRandomize = false, Guid? releaseId = null, Guid? artistId = null);
|
|
}
|
|
} |