Files
zap-stream-api/NostrStreamer/ApiModel/PatchEvent.cs
2023-07-04 11:30:04 +01:00

16 lines
329 B
C#

using Newtonsoft.Json;
namespace NostrStreamer.ApiModel;
public class PatchEvent
{
[JsonProperty("title")]
public string Title { get; init; } = null!;
[JsonProperty("summary")]
public string Summary { get; init; } = null!;
[JsonProperty("image")]
public string Image { get; init; } = null!;
}