continuity/Server/DB/Documents/InventoryTab.cs

13 lines
199 B
C#
Raw Normal View History

2023-11-08 14:33:04 +00:00
namespace Server.DB.Documents;
public enum InventoryTab : byte
2023-11-08 14:33:04 +00:00
{
WornEquipment = 0,
WornCashEquipment = 1,
Equipment = 2,
Etc = 3,
Cash = 4,
Warehouse = 5,
GiftBox = 6
}