mirror of
				https://github.com/MindWorkAI/AI-Studio.git
				synced 2025-11-04 10:40:20 +00:00 
			
		
		
		
	
		
			
	
	
		
			15 lines
		
	
	
		
			240 B
		
	
	
	
		
			C#
		
	
	
	
	
	
		
		
			
		
	
	
			15 lines
		
	
	
		
			240 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| 
								 | 
							
								namespace MudBlazor;
							 | 
						|||
| 
								 | 
							
								
							 | 
						|||
| 
								 | 
							
								internal readonly ref struct HtmlDetailsData
							 | 
						|||
| 
								 | 
							
								{
							 | 
						|||
| 
								 | 
							
									public HtmlDetailsData(string header, string content)
							 | 
						|||
| 
								 | 
							
									{
							 | 
						|||
| 
								 | 
							
										Header = header;
							 | 
						|||
| 
								 | 
							
										Content = content;
							 | 
						|||
| 
								 | 
							
									}
							 | 
						|||
| 
								 | 
							
								
							 | 
						|||
| 
								 | 
							
									public string Header { get; }
							 | 
						|||
| 
								 | 
							
								
							 | 
						|||
| 
								 | 
							
									public string Content { get; }
							 | 
						|||
| 
								 | 
							
								}
							 |