27 lines
593 B
C#
27 lines
593 B
C#
namespace LiteCharms.Features.MidrandBooks.Payments.Models;
|
|
|
|
public class PaymentGatewayLedger
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
public string? CustomerEmail { get; set; }
|
|
|
|
public long OrderId { get; set; }
|
|
|
|
public long PaymentId { get; set; }
|
|
|
|
public string? MerchantPaymentId { get; set; }
|
|
|
|
public string? PayfastPaymentId { get; set; }
|
|
|
|
public string? PaymentStatus { get; set; }
|
|
|
|
public decimal AmountGross { get; set; }
|
|
|
|
public decimal AmountFee { get; set; }
|
|
|
|
public decimal AmountNet { get; set; }
|
|
}
|