Files
components/LiteCharms.Features.MidrandBooks/Orders/Models/Records.cs
T
2026-05-26 08:24:38 +02:00

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);