feat: add basic autotranslate support

This commit is contained in:
Anna
2022-05-29 21:34:51 -04:00
parent de0309e428
commit 70cecf4a6d
6 changed files with 449 additions and 21 deletions
+13
View File
@@ -0,0 +1,13 @@
namespace ChatTwo.Ui;
internal class AutoCompleteInfo {
internal string ToComplete;
internal int StartPos { get; }
internal int EndPos { get; }
internal AutoCompleteInfo(string toComplete, int startPos, int endPos) {
this.ToComplete = toComplete;
this.StartPos = startPos;
this.EndPos = endPos;
}
}