mirror of
				https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
				synced 2025-10-31 10:15:33 +00:00 
			
		
		
		
	added basic start page setup; began rewrite of parser
This commit is contained in:
		| @@ -1,20 +1,20 @@ | ||||
| namespace HaDocument.Models { | ||||
|     public class Person { | ||||
|         public string Index { get; } = ""; | ||||
|         public string Name { get; } = ""; | ||||
|         public string Prename { get; } = ""; | ||||
|         public string Surname { get; } = ""; | ||||
| namespace HaDocument.Models; | ||||
|  | ||||
|         public Person( | ||||
|             string index, | ||||
|             string name, | ||||
|             string prename, | ||||
|             string surname | ||||
|         ) { | ||||
|             Index = index; | ||||
|             Name = name; | ||||
|             Prename = prename; | ||||
|             Surname = surname; | ||||
|         } | ||||
| 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; | ||||
|     } | ||||
| } | ||||
| } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 schnulller
					schnulller