Move com.termux.models to com.termux.app.models package

This commit is contained in:
agnostic-apollo
2021-03-27 19:08:26 +05:00
parent 2a8d5e292d
commit d7ea770d47
9 changed files with 13 additions and 13 deletions

View 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;
}
}