BililiveRecorder/BililiveRecorder.ToolBox/Tool/DanmakuMerger/DanmakuMergerRequest.cs

12 lines
294 B
C#
Raw Normal View History

2021-08-10 18:53:04 +08:00
using System;
namespace BililiveRecorder.ToolBox.Tool.DanmakuMerger
{
public class DanmakuMergerRequest : ICommandRequest<DanmakuMergerResponse>
{
public string[] Inputs { get; set; } = Array.Empty<string>();
public string Output { get; set; } = string.Empty;
}
}