com.blr19c.falowp.bot.system.api.ApiAuth.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of falowp-bot-system Show documentation
Show all versions of falowp-bot-system Show documentation
FalowpBot system infrastructure
The newest version!
package com.blr19c.falowp.bot.system.api
/**
* 权限
*/
enum class ApiAuth(val code: Int) {
/**
* 超级管理员
*/
ADMINISTRATOR(Int.MAX_VALUE),
/**
* 管理员
*/
MANAGER(100),
/**
* 普通成员
*/
ORDINARY_MEMBER(0),
}