Files
zap-stream-api/NostrStreamer/ApiModel/MakeClipReq.cs
2023-12-11 13:04:33 +00:00

17 lines
318 B
C#

using Newtonsoft.Json;
namespace NostrStreamer.ApiModel;
public class MakeClipReq
{
[JsonProperty("segments")]
public List<int> Segments { get; init; } = null!;
[JsonProperty("start")]
public float Start { get; init; }
[JsonProperty("length")]
public float Length { get; init; }
}