2018-02-19 23:13:23 +09:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using BTCPayServer.Services.Invoices;
|
|
|
|
|
|
|
|
|
|
namespace BTCPayServer.Payments
|
|
|
|
|
{
|
2018-02-20 12:45:04 +09:00
|
|
|
|
/// <summary>
|
2019-05-29 14:33:31 +00:00
|
|
|
|
/// 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.
|
2018-02-20 12:45:04 +09:00
|
|
|
|
/// This object will be serialized in database in json
|
|
|
|
|
/// </summary>
|
2018-02-20 10:44:39 +09:00
|
|
|
|
public interface ISupportedPaymentMethod
|
2018-02-19 23:13:23 +09:00
|
|
|
|
{
|
|
|
|
|
PaymentMethodId PaymentId { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|