Implement nostr api

This commit is contained in:
2023-07-04 11:30:04 +01:00
parent 5de1c96b20
commit 013008dcf9
9 changed files with 129 additions and 17 deletions

View File

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