nostr plugin

This commit is contained in:
Kukks
2023-02-09 16:06:25 +01:00
parent 8937565a5d
commit 90c827a3eb
10 changed files with 421 additions and 10 deletions

View File

@@ -0,0 +1,10 @@
using System.Collections.Generic;
using Newtonsoft.Json;
public class Nip5Response
{
[JsonProperty("names")] public Dictionary<string, string> Names { get; set; }
[JsonProperty("relays", NullValueHandling = NullValueHandling.Ignore)]
public Dictionary<string, string[]>? Relays { get; set; }
}