namespace InventoryApi.Models; public class InventoryOwnerResponse { public string OwnerType { get; set; } = string.Empty; public string OwnerId { get; set; } = string.Empty; public int RequestedQuantity { get; set; } public int GrantedQuantity { get; set; } public int OverflowQuantity { get; set; } public List Items { get; set; } = []; }