mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-12-26 12:15:42 +08:00
10 lines
243 B
C#
10 lines
243 B
C#
|
using System;
|
||
|
|
||
|
namespace BililiveRecorder.ToolBox.Tool.DanmakuStartTime
|
||
|
{
|
||
|
public class DanmakuStartTimeRequest : ICommandRequest<DanmakuStartTimeResponse>
|
||
|
{
|
||
|
public string[] Inputs { get; set; } = Array.Empty<string>();
|
||
|
}
|
||
|
}
|