promiscuity/microservices/InventoryApi/Models/CreateItemDefinitionRequest.cs
Zeeshaun a2a4d48de5
All checks were successful
Deploy Promiscuity Auth API / deploy (push) Successful in 47s
Deploy Promiscuity Character API / deploy (push) Successful in 46s
Deploy Promiscuity Inventory API / deploy (push) Successful in 58s
Deploy Promiscuity Locations API / deploy (push) Successful in 44s
k8s smoke test / test (push) Successful in 7s
Inventory enhancements
2026-03-15 13:57:15 -05:00

17 lines
379 B
C#

namespace InventoryApi.Models;
public class CreateItemDefinitionRequest
{
public string ItemKey { get; set; } = string.Empty;
public string DisplayName { get; set; } = string.Empty;
public bool Stackable { get; set; }
public int MaxStackSize { get; set; } = 1;
public string Category { get; set; } = "misc";
public string? EquipSlot { get; set; }
}