Added Order models

This commit is contained in:
Khwezi Mngoma
2026-05-26 00:47:07 +02:00
parent 7136e4fc70
commit 20b747e89c
7 changed files with 137 additions and 3 deletions
@@ -0,0 +1,20 @@
namespace LiteCharms.Features.MidrandBooks.Order.Models;
public class Refund
{
public Guid Id { get; set; }
public DateTime CreatedAt { get; set; }
public DateTime? UpdatedAt { get; set; }
public Guid OrderId { get; set; }
public RefundTypes Type { get; set; }
public RefundStatus Status { get; set; }
public string? Reason { get; set; }
public decimal Amount { get; set; }
}