Redo clips api

This commit is contained in:
2023-12-11 13:04:33 +00:00
parent 79973a3091
commit b75bea89e6
5 changed files with 109 additions and 19 deletions

View File

@ -0,0 +1,16 @@
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; }
}