19 lines
455 B
C#
19 lines
455 B
C#
namespace InventoryApi.Models;
|
|
|
|
public class TransferInventoryItemRequest
|
|
{
|
|
public string ItemId { 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 int? ToSlot { get; set; }
|
|
|
|
public int? Quantity { get; set; }
|
|
}
|