19 lines
395 B
C#
19 lines
395 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? MerchantPaymentId { get; set; }
|
|
}
|