Files
HellionChat/ChatTwo/Ui/AutoCompleteInfo.cs
T
2025-08-06 22:24:45 +02:00

16 lines
334 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)
{
ToComplete = toComplete;
StartPos = startPos;
EndPos = endPos;
}
}