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