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