19 lines
517 B
C#
19 lines
517 B
C#
namespace InventoryApi.Models;
|
|
|
|
public class TransferInventoryResponse
|
|
{
|
|
public string MovedItemId { get; set; } = string.Empty;
|
|
|
|
public string FromOwnerType { get; set; } = string.Empty;
|
|
|
|
public string FromOwnerId { get; set; } = string.Empty;
|
|
|
|
public string ToOwnerType { get; set; } = string.Empty;
|
|
|
|
public string ToOwnerId { get; set; } = string.Empty;
|
|
|
|
public List<InventoryItemResponse> FromItems { get; set; } = [];
|
|
|
|
public List<InventoryItemResponse> ToItems { get; set; } = [];
|
|
}
|