namespace InventoryApi.Models; public class OwnerInventorySummaryResponse { public string OwnerType { get; set; } = string.Empty; public string OwnerId { get; set; } = string.Empty; public List Items { get; set; } = []; }