Added payment database objects

This commit is contained in:
Khwezi Mngoma
2026-05-31 12:05:59 +02:00
parent 494b806744
commit 0e21ec283d
19 changed files with 2024 additions and 62 deletions
@@ -0,0 +1,20 @@
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; }
}