mirror of
https://github.com/RatzzFatzz/MKVAudioSubtitleChanger.git
synced 2026-02-11 02:05:56 +01:00
Add cli property for forced keywords
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
package at.pcgamingfreaks.mkvaudiosubtitlechanger.model;
|
||||
|
||||
public enum ConfigProperty {
|
||||
MKV_TOOL_NIX("mkvtoolnixPath"),
|
||||
THREADS("threads"),
|
||||
FORCED_KEYWORDS("forcedKeywords"),
|
||||
CONFIG("config"),
|
||||
LIBRARY("library"),
|
||||
SAFE_MODE("safe-mode"),
|
||||
HELP("help");
|
||||
|
||||
private String property;
|
||||
|
||||
ConfigProperty(String property) {
|
||||
this.property = property;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return property;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user