mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2025-05-29 10:34:05 +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
|
|
}
|