mirror of
				https://github.com/MindWorkAI/AI-Studio.git
				synced 2025-10-31 01:00:20 +00:00 
			
		
		
		
	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
		
	
	
		
			286 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			286 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace MudBlazor;
 | |
| 
 | |
| internal readonly ref struct StringLineGroupRange
 | |
| {
 | |
| 	public StringLineGroupRange(StringLineGroupIndex start, StringLineGroupIndex end)
 | |
| 	{
 | |
| 		Start = start;
 | |
| 		End = end;
 | |
| 	}
 | |
| 
 | |
| 	public StringLineGroupIndex Start { get; }
 | |
| 
 | |
| 	public StringLineGroupIndex End { get; }
 | |
| }
 |