mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-03-06 18:41:12 +01:00
10 lines
233 B
C#
10 lines
233 B
C#
|
namespace BTCPayServer.Client.Models
|
||
|
{
|
||
|
public class PayoutProcessorData
|
||
|
{
|
||
|
public string Name { get; set; }
|
||
|
public string FriendlyName { get; set; }
|
||
|
public string[] PaymentMethods { get; set; }
|
||
|
}
|
||
|
}
|