mirror of
				https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
				synced 2025-10-31 02:05:33 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			353 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			353 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace HaDocument.Models;
 | |
| using System.Xml.Linq;
 | |
| 
 | |
| public class Tradition {
 | |
|     public string Index { get; }
 | |
|     public XElement Element { get; }
 | |
|     public string Value;
 | |
| 
 | |
|     public Tradition(
 | |
|         string index,
 | |
|         XElement element,
 | |
|         string value
 | |
|     ) {
 | |
|         Index = index;
 | |
|         Element = element;
 | |
|         Value = value;
 | |
|     }
 | |
| } | 
