using System.Text.Json.Serialization; namespace Domain.Generics { public class CurrencyResponse { public string d { get; set; } // fecha public decimal v { get; set; } // valor } }