Redo clips api
This commit is contained in:
16
NostrStreamer/ApiModel/MakeClipReq.cs
Normal file
16
NostrStreamer/ApiModel/MakeClipReq.cs
Normal 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; }
|
||||
}
|
Reference in New Issue
Block a user