mirror of
https://github.com/unclshura/splitter.git
synced 2026-06-22 00:22:01 +00:00
12 lines
266 B
C#
12 lines
266 B
C#
using System.Threading;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Splitter_UI.Services;
|
|
|
|
public interface IProcessingService
|
|
{
|
|
event Action<string, ProgressInfo>? ProgressChanged;
|
|
|
|
Task ProcessAsync(IEnumerable<SingleJob> jobs, CancellationToken token);
|
|
}
|