mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-28 16:58:00 +01:00
18 lines
521 B
C#
18 lines
521 B
C#
using Newtonsoft.Json;
|
|
|
|
namespace BTCPayServer.Payments.Changelly.Models
|
|
{
|
|
public class CurrencyFull
|
|
{
|
|
[JsonProperty("name")]
|
|
public string Name { get; set; }
|
|
[JsonProperty("fullName")]
|
|
public string FullName { get; set; }
|
|
[JsonProperty("enabled")]
|
|
public bool Enable { get; set; }
|
|
[JsonProperty("payinConfirmations")]
|
|
public int PayInConfirmations { get; set; }
|
|
[JsonProperty("image")]
|
|
public string ImageLink { get; set; }
|
|
}
|
|
}
|