Implement nostr api
This commit is contained in:
15
NostrStreamer/ApiModel/PatchEvent.cs
Normal file
15
NostrStreamer/ApiModel/PatchEvent.cs
Normal 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!;
|
||||
}
|
Reference in New Issue
Block a user