mirror of
				https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
				synced 2025-10-31 02:05:33 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			20 lines
		
	
	
		
			504 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			504 B
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace HaDocument.Models {
 | |
|     public class Person {
 | |
|         public string Index { get; } = "";
 | |
|         public string Name { get; } = "";
 | |
|         public string Prename { get; } = "";
 | |
|         public string Surname { get; } = "";
 | |
| 
 | |
|         public Person(
 | |
|             string index,
 | |
|             string name,
 | |
|             string prename,
 | |
|             string surname
 | |
|         ) {
 | |
|             Index = index;
 | |
|             Name = name;
 | |
|             Prename = prename;
 | |
|             Surname = surname;
 | |
|         }
 | |
|     }
 | |
| } | 
