Person Pages

This commit is contained in:
Simon Martens
2023-06-26 22:30:05 +02:00
parent e18f053865
commit cf0bc3cddf
18 changed files with 8571 additions and 495514 deletions

View File

@@ -4,17 +4,20 @@ namespace HaDocument.Models {
public string Name { get; } = "";
public string Prename { get; } = "";
public string Surname { get; } = "";
public string? Komm { get; }
public Person(
string index,
string name,
string prename,
string surname
string surname,
string? komm
) {
Index = index;
Name = name;
Prename = prename;
Surname = surname;
Komm = komm;
}
}
}