mirror of
https://github.com/chylex/Minecraft-Phantom-Panel.git
synced 2025-05-14 20:34:03 +02:00
9 lines
149 B
C#
9 lines
149 B
C#
namespace Phantom.Controller.Services.Users;
|
|
|
|
public enum AddRoleError : byte {
|
|
NameIsEmpty,
|
|
NameIsTooLong,
|
|
NameAlreadyExists,
|
|
UnknownError
|
|
}
|