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