continuity/Continuity.AuthServer/DB/Documents/InventoryTab.cs

14 lines
283 B
C#
Raw Normal View History

2024-02-07 15:40:36 +00:00
// Licensed to Timothy Schenk under the GNU AGPL Version 3 License.
2023-11-20 18:58:30 +00:00
namespace Continuity.AuthServer.DB.Documents;
2023-11-08 14:33:04 +00:00
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
}