mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 06:44:12 +00:00
17 lines
No EOL
578 B
C#
17 lines
No EOL
578 B
C#
using Roadie.Library;
|
|
using Roadie.Library.Models.Collections;
|
|
using Roadie.Library.Models.Pagination;
|
|
using Roadie.Library.Models.Users;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Roadie.Api.Services
|
|
{
|
|
public interface ICollectionService
|
|
{
|
|
Task<OperationResult<Collection>> ById(User roadieUser, Guid id, IEnumerable<string> includes = null);
|
|
|
|
Task<PagedResult<CollectionList>> List(User roadieUser, PagedRequest request, bool? doRandomize = false, Guid? releaseId = null, Guid? artistId = null);
|
|
}
|
|
} |