namespace LiteCharms.Features.MidrandBooks.Payments.Models; public class Payment { public long Id { get; set; } public DateTime CreatedAt { get; set; } public DateTime? UpdatedAt { get; set; } public decimal Amount { get; set; } public long OrderId { get; set; } public string? Reference { get; set; } public PaymentStatuses Status { get; set; } }