mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2024-11-19 18:11:36 +01:00
13 lines
390 B
C#
13 lines
390 B
C#
namespace BTCPayServer.Payments
|
|
{
|
|
/// <summary>
|
|
/// A class for configuration of a type of payment method stored on a store level.
|
|
/// It is cloned to invoices of the store during invoice creation.
|
|
/// This object will be serialized in database in json
|
|
/// </summary>
|
|
public interface ISupportedPaymentMethod
|
|
{
|
|
PaymentMethodId PaymentId { get; }
|
|
}
|
|
}
|