mirror of
https://github.com/Theodor-Springmann-Stiftung/hamann-ausgabe-core.git
synced 2025-10-29 17:25:32 +00:00
Person Pages
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user