- WHY: align inventory capability contracts with protocol-agnostic integration boundaries - WHAT: add contract conventions, grpc adapter surfaces, and blueprint descriptor consumption - RULE: enforce building-block to blueprint dependency direction
10 lines
307 B
C#
10 lines
307 B
C#
namespace BuildingBlock.Inventory.Contracts.Conventions;
|
|
|
|
/// <summary>
|
|
/// Defines transport-neutral request contract shape for inventory capability operations.
|
|
/// </summary>
|
|
/// <typeparam name="TResponse">Response contract type.</typeparam>
|
|
public interface IInventoryContractRequest<out TResponse>
|
|
{
|
|
}
|