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
|
|
|
|
2024-01-29 07:39:18 +00:00
|
|
|
namespace Continuity.AuthServer.DB.Documents;
|
2023-11-14 19:07:45 +00:00
|
|
|
|
2025-01-16 13:30:40 +00:00
|
|
|
public enum GuildRank : byte {
|
2023-11-14 19:07:45 +00:00
|
|
|
Initiate = 0,
|
|
|
|
Member = 1,
|
|
|
|
Veteran = 2,
|
|
|
|
Elite = 3,
|
|
|
|
Officer = 4,
|
|
|
|
Master = 5
|
|
|
|
}
|