11 lines
216 B
C#
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
|
|||
|
|
}
|
|||
|
|
}
|