mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2025-04-28 10:15:47 +02:00
9 lines
146 B
C#
9 lines
146 B
C#
namespace Phantom.Server.Services.Users;
|
|
|
|
public enum AddRoleError : byte {
|
|
NameIsEmpty,
|
|
NameIsTooLong,
|
|
NameAlreadyExists,
|
|
UnknownError
|
|
}
|