mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 09:54:30 +01:00
363b60385b
* Rename Payouts Currency/OriginalCurrency * Rename Payout Processor PayoutMethodIds * Rename paymentMethods to payoutMethodIds * Rename payoutMethodIds to payoutMethods
10 lines
232 B
C#
10 lines
232 B
C#
namespace BTCPayServer.Client.Models
|
|
{
|
|
public class PayoutProcessorData
|
|
{
|
|
public string Name { get; set; }
|
|
public string FriendlyName { get; set; }
|
|
public string[] PayoutMethods { get; set; }
|
|
}
|
|
}
|