splitter/splitter-cli/ISegmentProcessor.cs

11 lines
174 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace splitter;
public interface ISegmentProcessor
{
Task ProcessSegment( SingleTask job );
}