mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-12-26 20:26:00 +08:00
14 lines
354 B
C#
14 lines
354 B
C#
using BililiveRecorder.Flv.Pipeline;
|
|
|
|
namespace BililiveRecorder.ToolBox.Tool.Fix
|
|
{
|
|
public class FixRequest : ICommandRequest<FixResponse>
|
|
{
|
|
public string Input { get; set; } = string.Empty;
|
|
|
|
public string OutputBase { get; set; } = string.Empty;
|
|
|
|
public ProcessingPipelineSettings? PipelineSettings { get; set; }
|
|
}
|
|
}
|