mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
14 lines
389 B
C#
14 lines
389 B
C#
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; }
|
|
}
|
|
}
|