btcpayserver/BTCPayServer/Models/BitpayTranslatorViewModel.cs

14 lines
389 B
C#
Raw Normal View History

2018-12-03 23:57:43 +09:00
using System.ComponentModel.DataAnnotations;
namespace BTCPayServer.Models
{
public class BitpayTranslatorViewModel
{
[Display(Name = "Bitpay's invoice URL or obsolete invoice url")]
public string BitpayLink { get; set; }
public string Address { get; set; }
public string Amount { get; set; }
public string BitcoinUri { get; set; }
2018-12-03 23:57:43 +09:00
}
}