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