14 lines
197 B
TypeScript
14 lines
197 B
TypeScript
export default class PermissionLevel {
|
|
public static get None() {
|
|
return 0;
|
|
}
|
|
|
|
public static get User() {
|
|
return 1;
|
|
}
|
|
|
|
public static get Root() {
|
|
return 2;
|
|
}
|
|
}
|