Files
components/LiteCharms.Features.MidrandBooks/Payments/Models/PaymentGateway.cs
T
Khwezi Mngoma f1ef614cbb
continuous-integration/drone/pr Build is failing
Removed passphrase from PaymentGateway
2026-06-01 09:19:08 +02:00

23 lines
472 B
C#

namespace LiteCharms.Features.MidrandBooks.Payments.Models;
public class PaymentGateway
{
public long Id { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime? UpdatedAt { get; set; }
public string? Name { get; set; }
public string? Website { get; set; }
public string? MerchantId { get; set; }
public string? MerchantKey { get; set; }
public bool IsSandbox { get; set; }
public bool Enabled { get; set; }
}