phronCare/Domain/Generics/CurrencyResponse.cs

11 lines
216 B
C#
Raw Normal View History

2025-05-08 03:09:52 -03:00
using System.Text.Json.Serialization;
namespace Domain.Generics
{
public class CurrencyResponse
{
public string d { get; set; } // fecha
public decimal v { get; set; } // valor
}
}