Created Order, Refund, Shipping

This commit is contained in:
Khwezi Mngoma
2026-05-26 08:24:38 +02:00
parent 20b747e89c
commit 70860efcfb
19 changed files with 320 additions and 11 deletions
@@ -0,0 +1,16 @@
namespace LiteCharms.Features.MidrandBooks.Orders.Models;
public class OrderItem
{
public long Id { get; set; }
public DateTime CreatedAt { get; set; }
public long OrderId { get; set; }
public long AuthorBookId { get; set; }
public long ProductPriceId { get; set; }
public int Quantity { get; set; }
}