mirror of
				https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
				synced 2025-11-04 12:15:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			314 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			314 B
		
	
	
	
		
			C#
		
	
	
	
	
	
namespace HaDocument.Models {
 | 
						|
    public class Tradition {
 | 
						|
        public string Index { get; } = "";
 | 
						|
        public string Element { get; } = "";
 | 
						|
 | 
						|
        public Tradition(
 | 
						|
            string index,
 | 
						|
            string element
 | 
						|
        ) {
 | 
						|
            Index = index;
 | 
						|
            Element = element;
 | 
						|
        }
 | 
						|
    }
 | 
						|
} |