Adding inventory microservice
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

This commit is contained in:
2026-03-15 10:21:49 -05:00
parent 9809869cbe
commit 9a7d6544ef
27 changed files with 1483 additions and 7 deletions
@@ -0,0 +1,18 @@
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; } = [];
}