mirror of
				https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
				synced 2025-10-30 17:55:32 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			254 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			254 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace HaDocument.Models;
 | |
| public class Location {
 | |
|     public string Index { get; } = "";
 | |
|     public string Name { get; } = "";
 | |
| 
 | |
|     public Location(
 | |
|         string index,
 | |
|         string name
 | |
|     ) {
 | |
|         Index = index;
 | |
|         Name = name;
 | |
|     }
 | |
| }
 | 
