11 lines
253 B
C#
11 lines
253 B
C#
namespace InventoryApi.Models;
|
|
|
|
public class InventoryOwnerResponse
|
|
{
|
|
public string OwnerType { get; set; } = string.Empty;
|
|
|
|
public string OwnerId { get; set; } = string.Empty;
|
|
|
|
public List<InventoryItemResponse> Items { get; set; } = [];
|
|
}
|