namespace LiteCharms.Features.MidrandBooks.Orders.Models; public record CreateOrder(long CustomerId, decimal TotalPrice, string? Notes); public record CreateOrderItem(long AuthorBookId, long ProductPriceId, int Quantity);