building-block-inventory/src/BuildingBlock.Inventory.Contracts/Conventions/IInventoryContractRequest.cs
José René White Enciso b24d4009ed feat(contracts): add transport-neutral inventory contracts
- 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
2026-02-22 02:57:11 -06:00

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>
{
}