T2C-AutoResponse/src/main/java/net/t2code/autoresponse/Spigot/objects/ResponsesObject.java

74 lines
2.8 KiB
Java
Raw Normal View History

2022-01-27 08:04:30 +00:00
package net.t2code.autoresponse.Spigot.objects;
import java.util.List;
public class ResponsesObject {
public Boolean enable;
2022-03-10 20:02:31 +00:00
public List<String> responseKeys;
2022-01-27 08:04:30 +00:00
public Boolean contains;
public Boolean blockKeyMessage;
2022-01-27 08:04:30 +00:00
public Boolean commandEnable;
public Boolean permNecessary;
public String permission;
public Boolean commandAsConsole;
public Boolean bungeeCommand;
public List<String> command;
public Boolean messageEnable;
public Boolean messageGlobal;
public Boolean messageGlobalBungee;
2022-01-27 08:04:30 +00:00
public List<String> messages;
2022-03-10 21:54:01 +00:00
public Boolean protectionGameModeEnable;
public String protectionGameModeMode;
public List<String> protectionGameModeList;
public Boolean protectionWorldEnable;
public String protectionWorldMode;
public List<String> protectionWorldList;
2022-01-27 08:04:30 +00:00
public ResponsesObject(Boolean enable,
2022-03-10 20:02:31 +00:00
List<String> responseKeys,
2022-01-27 08:04:30 +00:00
Boolean contains,
Boolean blockKeyMessage,
2022-01-27 08:04:30 +00:00
Boolean permNecessary,
String permission,
Boolean commandEnable,
Boolean commandAsConsole,
Boolean bungeeCommand,
List<String> command,
Boolean messageEnable,
Boolean messageGlobal,
Boolean messageGlobalBungee,
2022-01-27 08:04:30 +00:00
List<String> messages,
2022-03-10 21:54:01 +00:00
Boolean protectionGameModeEnable,
String protectionGameModeMode,
List<String> protectionGameModeList,
Boolean protectionWorldEnable,
String protectionWorldMode,
List<String> protectionWorldList) {
2022-01-27 08:04:30 +00:00
this.enable = enable;
2022-03-10 20:02:31 +00:00
this.responseKeys = responseKeys;
2022-01-27 08:04:30 +00:00
this.contains=contains;
this.blockKeyMessage=blockKeyMessage;
2022-01-27 08:04:30 +00:00
this.permNecessary = permNecessary;
this.permission = permission;
this.commandEnable = commandEnable;
this.commandAsConsole = commandAsConsole;
this.bungeeCommand = bungeeCommand;
this.command = command;
this.messageEnable = messageEnable;
this.messageGlobal = messageGlobal;
this.messageGlobalBungee = messageGlobalBungee;
2022-01-27 08:04:30 +00:00
this.messages = messages;
2022-03-10 21:54:01 +00:00
this.protectionGameModeEnable = protectionGameModeEnable;
this.protectionGameModeMode = protectionGameModeMode;
this.protectionGameModeList = protectionGameModeList;
this.protectionWorldEnable = protectionWorldEnable;
this.protectionWorldMode = protectionWorldMode;
this.protectionWorldList = protectionWorldList;
2022-01-27 08:04:30 +00:00
}
}