- WHY: establish Stage 3 task-001 execution baseline per repo intent - WHAT: add minimal solution/project skeleton and boundary docs - RULE: apply stage3 execution runtime and repository workflow directives
9 lines
375 B
C#
9 lines
375 B
C#
namespace BuildingBlock.Inventory.Contracts.Responses;
|
|
|
|
/// <summary>
|
|
/// Represents the contract response for an inventory item lookup.
|
|
/// </summary>
|
|
/// <param name="ItemCode">External item identifier.</param>
|
|
/// <param name="QuantityAvailable">Current quantity available.</param>
|
|
public sealed record InventoryItemLookupResponse(string ItemCode, int QuantityAvailable);
|