forked from UnlegitDqrk/unlegitlibrary
29 lines
785 B
Java
29 lines
785 B
Java
/*
|
|
* Copyright (C) 2025 UnlegitDqrk - All Rights Reserved
|
|
*
|
|
* You are unauthorized to remove this copyright.
|
|
* You have to give Credits to the Author in your project and link this GitHub site: https://github.com/UnlegitDqrk
|
|
* See LICENSE-File if exists
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2024 UnlegitDqrk - All Rights Reserved
|
|
*
|
|
* You are unauthorized to remove this copyright.
|
|
* You have to give Credits to the Author in your project and link this GitHub site: https://github.com/UnlegitDqrk
|
|
* See LICENSE-File if exists
|
|
*/
|
|
|
|
package dev.unlegitdqrk.unlegitlibrary.command;
|
|
|
|
public class CommandPermission {
|
|
|
|
public final String name;
|
|
public final int level;
|
|
|
|
public CommandPermission(String name, int level) {
|
|
this.name = name;
|
|
this.level = level;
|
|
}
|
|
}
|