2023-11-21 21:37:50 +01:00
|
|
|
// Copyright (c) 2023 Timothy Schenk. Subject to the GNU AGPL Version 3 License.
|
2023-11-20 19:58:30 +01:00
|
|
|
|
2024-01-29 08:39:18 +01:00
|
|
|
namespace Continuity.AuthServer.DB.Documents;
|
2023-11-08 15:33:04 +01:00
|
|
|
|
2023-11-15 20:00:08 +01:00
|
|
|
public enum InventoryTab : byte
|
2023-11-08 15:33:04 +01:00
|
|
|
{
|
|
|
|
WornEquipment = 0,
|
|
|
|
WornCashEquipment = 1,
|
|
|
|
Equipment = 2,
|
|
|
|
Etc = 3,
|
|
|
|
Cash = 4,
|
|
|
|
Warehouse = 5,
|
|
|
|
GiftBox = 6
|
|
|
|
}
|