promiscuity/microservices/InventoryApi/Models/TransferInventoryItemRequest.cs
Zeeshaun 9a7d6544ef
All checks were successful
Deploy Promiscuity Auth API / deploy (push) Successful in 46s
Deploy Promiscuity Character API / deploy (push) Successful in 46s
Deploy Promiscuity Locations API / deploy (push) Successful in 46s
k8s smoke test / test (push) Successful in 7s
Adding inventory microservice
2026-03-15 10:21:49 -05:00

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; }
}