Контракт http

This commit is contained in:
2026-05-31 23:09:30 +03:00
parent e691f14e5d
commit 01b935e112
18 changed files with 204 additions and 10 deletions

View File

@@ -0,0 +1,10 @@
using Domain.Entities;
namespace Contracts.Orders;
public sealed class SendOrderParameters
{
public required string OrderId { get; init; }
public IReadOnlyList<OrderItem> MenuItems { get; init; } = [];
}