mirror of
https://github.com/MindWorkAI/AI-Studio.git
synced 2025-02-05 23:09:07 +00:00
Thorsten Sommer
c84184e5d1
This is necessary due to issue https://github.com/MyNihongo/MudBlazor.Markdown/issues/247 I created a PR as well: https://github.com/MyNihongo/MudBlazor.Markdown/pull/246
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; }
|
|
}
|