mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
14 lines
296 B
C#
14 lines
296 B
C#
|
namespace BTCPayServer.Client.Models;
|
||
|
|
||
|
public class WithdrawRequestData
|
||
|
{
|
||
|
public string PaymentMethod { set; get; }
|
||
|
public decimal Qty { set; get; }
|
||
|
|
||
|
public WithdrawRequestData(string paymentMethod, decimal qty)
|
||
|
{
|
||
|
PaymentMethod = paymentMethod;
|
||
|
Qty = qty;
|
||
|
}
|
||
|
}
|