mirror of
https://github.com/NecroticBamboo/QRBee.git
synced 2025-12-21 12:11:53 +00:00
18 lines
377 B
C#
18 lines
377 B
C#
using QRBee.Api.Services.Database;
|
|
using QRBee.Core.Data;
|
|
|
|
namespace QRBee.Api.Services
|
|
{
|
|
|
|
public class GatewayResponse
|
|
{
|
|
public bool Success { get; init; }
|
|
public string? ErrorMessage { get; init; }
|
|
}
|
|
|
|
public interface IPaymentGateway
|
|
{
|
|
Task<GatewayResponse> Payment(TransactionInfo info, ClientCardData clientCardData);
|
|
}
|
|
}
|