25 lines
517 B
C#
25 lines
517 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 string? Passphrase { get; set; }
|
|
|
|
public bool IsSandbox { get; set; }
|
|
|
|
public bool Enabled { get; set; }
|
|
}
|