namespace InventoryApi.Models; public class UpdateItemDefinitionRequest { 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; } }