| 123456789101112131415 |
- 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,
- int? GiftToMemberID = null,
- string? GiftMessage = null
- ) : ICommand<Result<Response>>
- {
- public sealed record Item(int ProductID, int Quantity);
- }
|