public TranslateHashData(bool enabled, string input, string output, TranslateHashType hashType) { Enabled = enabled; Input = input; Output = output; HashType = hashType; }
public TranslateHashData() { Enabled = true; Input = ""; Output = ""; HashType = TranslateHashType.Default; }