6 lines
227 B
C#
6 lines
227 B
C#
namespace LiteCharms.Features.MidrandBooks.Orders.Models;
|
|
|
|
public record CreateOrder(long CustomerId, decimal TotalPrice, string? Notes);
|
|
|
|
public record CreateOrderItem(long AuthorBookId, long ProductPriceId, int Quantity);
|