mirror of
https://github.com/sphildreth/roadie
synced 2024-11-22 20:23:16 +00:00
19 lines
556 B
C#
19 lines
556 B
C#
|
using System.Collections.Generic;
|
|||
|
using System.IO;
|
|||
|
using System.Threading.Tasks;
|
|||
|
using Roadie.Library;
|
|||
|
using Roadie.Library.Identity;
|
|||
|
|
|||
|
namespace Roadie.Api.Services
|
|||
|
{
|
|||
|
public interface IFileDirectoryProcessorService
|
|||
|
{
|
|||
|
IEnumerable<int> AddedArtistIds { get; }
|
|||
|
IEnumerable<int> AddedReleaseIds { get; }
|
|||
|
IEnumerable<int> AddedTrackIds { get; }
|
|||
|
|
|||
|
int? ProcessLimit { get; set; }
|
|||
|
|
|||
|
Task<OperationResult<bool>> Process(ApplicationUser user, DirectoryInfo folder, bool doJustInfo, int? submissionId = null);
|
|||
|
}
|
|||
|
}
|