2018-02-19 15:13:23 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using BTCPayServer.Services.Invoices;
|
|
|
|
|
|
|
|
|
|
namespace BTCPayServer.Payments
|
|
|
|
|
{
|
2018-02-20 04:45:04 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// This class represent a mode of payment supported by a store.
|
|
|
|
|
/// It is stored at the store level and cloned to the invoice during invoice creation.
|
|
|
|
|
/// This object will be serialized in database in json
|
|
|
|
|
/// </summary>
|
2018-02-20 02:44:39 +01:00
|
|
|
|
public interface ISupportedPaymentMethod
|
2018-02-19 15:13:23 +01:00
|
|
|
|
{
|
|
|
|
|
PaymentMethodId PaymentId { get; }
|
|
|
|
|
}
|
|
|
|
|
}
|