Files
HellionChat/ChatTwo/Ui/AutoCompleteInfo.cs
T
2022-05-30 00:42:23 -04:00

14 lines
345 B
C#
Executable File

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