mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-12-27 12:35:35 +08:00
10 lines
244 B
C#
10 lines
244 B
C#
|
namespace BililiveRecorder.ToolBox.Tool.Fix
|
|||
|
{
|
|||
|
public class FixRequest : ICommandRequest<FixResponse>
|
|||
|
{
|
|||
|
public string Input { get; set; } = string.Empty;
|
|||
|
|
|||
|
public string OutputBase { get; set; } = string.Empty;
|
|||
|
}
|
|||
|
}
|