phronCare/Domain/Generics/CurrencyResponse.cs
Leandro Hernan Rojas e1bd50d4d6
Some checks failed
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Failing after 56s
Add ExchangeRate Function BCRA
2025-05-08 03:09:52 -03:00

11 lines
216 B
C#

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