mirror of
https://github.com/sphildreth/roadie
synced 2024-11-10 14:54:11 +00:00
19 lines
No EOL
658 B
C#
19 lines
No EOL
658 B
C#
using Roadie.Library;
|
|
using Roadie.Library.Models;
|
|
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 ITrackService
|
|
{
|
|
Task<OperationResult<Track>> ById(User roadieUser, Guid id, IEnumerable<string> includes);
|
|
|
|
Task<Library.Models.Pagination.PagedResult<TrackList>> List(PagedRequest request, User roadieUser, bool? doRandomize = false, Guid? releaseId = null);
|
|
|
|
Task<OperationResult<TrackStreamInfo>> TrackStreamInfo(Guid trackId, long beginBytes, long endBytes);
|
|
}
|
|
} |