| 12345678910111213 |
- using Application.Abstractions.Messaging;
- using SharedKernel.Results;
- namespace Application.Features.Api.Store.Orders.Place;
- public sealed record Command(
- int MemberID,
- int? ChannelID,
- List<Command.Item> Items
- ) : ICommand<Result<Response>>
- {
- public sealed record Item(int ProductID, int Quantity);
- }
|