mirror of
https://github.com/aljazceru/BTCPayServerPlugins.git
synced 2025-12-17 15:44:26 +01:00
10 lines
310 B
C#
10 lines
310 B
C#
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; }
|
|
} |