mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 11:42:22 +08:00
14 lines
347 B
C#
14 lines
347 B
C#
using System;
|
|
|
|
namespace BililiveRecorder.ToolBox.Tool.DanmakuMerger
|
|
{
|
|
public class DanmakuMergerRequest : ICommandRequest<DanmakuMergerResponse>
|
|
{
|
|
public string[] Inputs { get; set; } = Array.Empty<string>();
|
|
|
|
public int[]? Offsets { get; set; } = null;
|
|
|
|
public string Output { get; set; } = string.Empty;
|
|
}
|
|
}
|