mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-17 23:54:26 +01:00
nostr plugin
This commit is contained in:
10
Plugins/BTCPayServer.Plugins.NIP05/Nip5Response.cs
Normal file
10
Plugins/BTCPayServer.Plugins.NIP05/Nip5Response.cs
Normal 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; }
|
||||
}
|
||||
Reference in New Issue
Block a user