Files
zap-stream-api/NostrStreamer/ApiModel/PatchEvent.cs
Kieran 3cabc7ac16
All checks were successful
continuous-integration/drone/push Build is passing
feat: restore default stream details
2025-05-30 12:42:41 +01:00

28 lines
608 B
C#

using Newtonsoft.Json;
namespace NostrStreamer.ApiModel;
public class PatchEvent
{
[JsonProperty("id")]
public Guid? Id { get; init; }
[JsonProperty("title")]
public string? Title { get; init; }
[JsonProperty("summary")]
public string? Summary { get; init; }
[JsonProperty("image")]
public string? Image { get; init; }
[JsonProperty("tags")]
public string[]? Tags { get; init; } = [];
[JsonProperty("content_warning")]
public string? ContentWarning { get; init; }
[JsonProperty("goal")]
public string? Goal { get; init; }
}