21 lines
450 B
C#
21 lines
450 B
C#
namespace LiteCharms.Features.MidrandBooks.Payments.Models;
|
|
|
|
public class PaymentLedger
|
|
{
|
|
public long Id { get; set; }
|
|
|
|
public DateTime CreatedAt { get; set; }
|
|
|
|
public LedgerStatuses Status { get; set; }
|
|
|
|
public long OrderId { get; set; }
|
|
|
|
public long PaymentId { get; set; }
|
|
|
|
public long CustomerId { get; set; }
|
|
|
|
public string? PaymentGatewayReference { get; set; }
|
|
|
|
public long? PaymentGatewayId { get; set; }
|
|
}
|