mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-30 12:14:23 +01:00
14 lines
260 B
C#
14 lines
260 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Payments.Changelly.Models
|
|
{
|
|
public class Error
|
|
{
|
|
[JsonProperty("code")]
|
|
public int Code { get; set; }
|
|
|
|
[JsonProperty("message")]
|
|
public string Message { get; set; }
|
|
}
|
|
}
|