[fix:] plz's and pplz's CAN be alphanumeric

This commit is contained in:
2025-11-27 14:48:24 +01:00
parent 7cd02456bc
commit 8c56717b9c
3 changed files with 48 additions and 38 deletions

View File

@@ -70,10 +70,10 @@ public class KasPerson
anredzus = "";
strasse = "";
strasse2 = "";
plz = 0;
plz = "";
ort = "";
land = "";
pplz = 0;
pplz = "";
postfach = "";
name1 = "";
name2 = "";
@@ -96,10 +96,10 @@ public class KasPerson
string anredzus,
string strasse,
string strasse2,
int plz,
string plz,
string ort,
string land,
int pplz,
string pplz,
string postfach,
string name1,
string name2,
@@ -147,10 +147,10 @@ public class KasPerson
public string anredzus { get; set; }
public string strasse { get; set; }
public string strasse2 { get; set; }
public int plz { get; set; }
public string plz { get; set; }
public string ort { get; set; }
public string land { get; set; }
public int pplz { get; set; }
public string pplz { get; set; }
public string postfach { get; set; }
public string name1 { get; set; }
public string name2 { get; set; }