mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-12-26 20:26:00 +08:00
12 lines
294 B
C#
12 lines
294 B
C#
|
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;
|
||
|
}
|
||
|
}
|