mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-06 01:49:06 +00:00
15 lines
222 B
C#
15 lines
222 B
C#
|
namespace MudBlazor;
|
|||
|
|
|||
|
internal readonly ref struct StringLineGroupIndex
|
|||
|
{
|
|||
|
public StringLineGroupIndex(int line, int index)
|
|||
|
{
|
|||
|
Line = line;
|
|||
|
Index = index;
|
|||
|
}
|
|||
|
|
|||
|
public int Line { get; }
|
|||
|
|
|||
|
public int Index { get; }
|
|||
|
}
|