Some checks failed
CI/CD Pipeline / Build and Deploy with Docker Compose (push) Failing after 56s
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
|
|
}
|
|
}
|