using System.Collections.Generic; using Newtonsoft.Json; public class Nip5Response { [JsonProperty("names")] public Dictionary Names { get; set; } [JsonProperty("relays", NullValueHandling = NullValueHandling.Ignore)] public Dictionary? Relays { get; set; } }