mirror of
https://github.com/aljazceru/btcpayserver.git
synced 2025-12-18 22:44:29 +01:00
Add pull payment feature (#1639)
This commit is contained in:
26
BTCPayServer/Models/WalletViewModels/PayoutsModel.cs
Normal file
26
BTCPayServer/Models/WalletViewModels/PayoutsModel.cs
Normal file
@@ -0,0 +1,26 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BTCPayServer.Models.WalletViewModels
|
||||
{
|
||||
public class PayoutsModel
|
||||
{
|
||||
public string PullPaymentId { get; set; }
|
||||
public string Command { get; set; }
|
||||
public class PayoutModel
|
||||
{
|
||||
public string PayoutId { get; set; }
|
||||
public bool Selected { get; set; }
|
||||
public DateTimeOffset Date { get; set; }
|
||||
public string PullPaymentId { get; set; }
|
||||
public string PullPaymentName { get; set; }
|
||||
public string Destination { get; set; }
|
||||
public string Amount { get; set; }
|
||||
public string TransactionLink { get; set; }
|
||||
}
|
||||
public List<PayoutModel> WaitingForApproval { get; set; } = new List<PayoutModel>();
|
||||
public List<PayoutModel> Other { get; set; } = new List<PayoutModel>();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user