using System.Text.Json.Serialization; namespace Core.Models.Eft.Profile; public record ConnectResponse { [JsonPropertyName("backendUrl")] public string? BackendUrl { get; set; } [JsonPropertyName("name")] public string? Name { get; set; } [JsonPropertyName("editions")] public List? Editions { get; set; } [JsonPropertyName("profileDescriptions")] public Dictionary? ProfileDescriptions { get; set; } }