Skip to content

Commit 799918b

Browse files
feature(#2): this commit introduces the “address” property to order schemas, updating contracts
1 parent 27fe84c commit 799918b

2 files changed

Lines changed: 2 additions & 0 deletions

File tree

Artifacts/Comanda.Internal.Contracts/Source/Transport/Internal/Orders/OrderCreationScheme.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ public sealed record OrderCreationScheme : IDispatchable<Result<OrderScheme>>
44
{
55
public Fulfillment Fulfillment { get; init; }
66
public Priority Priority { get; init; }
7+
public Address? Address { get; init; } = default!;
78
public Metadata Metadata { get; init; } = default!;
89
public IEnumerable<Item> Items { get; init; } = [];
910
}

Artifacts/Comanda.Internal.Contracts/Source/Transport/Internal/Orders/OrderScheme.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ public sealed record OrderScheme
55
public string Identifier { get; init; } = default!;
66
public string Code { get; init; } = default!;
77

8+
public Address? Address { get; init; } = default!;
89
public Status Status { get; init; }
910
public Priority Priority { get; init; }
1011
public Fulfillment Fulfillment { get; init; }

0 commit comments

Comments
 (0)