Move com.termux.models to com.termux.app.models package
This commit is contained in:
17
app/src/main/java/com/termux/app/models/UserAction.java
Normal file
17
app/src/main/java/com/termux/app/models/UserAction.java
Normal file
@@ -0,0 +1,17 @@
|
||||
package com.termux.app.models;
|
||||
|
||||
public enum UserAction {
|
||||
|
||||
PLUGIN_EXECUTION_COMMAND("plugin execution command");
|
||||
|
||||
private final String name;
|
||||
|
||||
UserAction(final String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user