Rework models
This commit is contained in:
@ -57,16 +57,16 @@ namespace WGneu.Models {
|
||||
public string? UstId { get; set; }
|
||||
|
||||
[Column("volllieferant")]
|
||||
public bool VollLieferant { get; set; }
|
||||
public bool IsVollLieferant { get; set; }
|
||||
|
||||
[Column("buchführend")]
|
||||
public bool Buchführend { get; set; }
|
||||
public bool IsBuchführend { get; set; }
|
||||
|
||||
[Column("funktionär")]
|
||||
public bool Funktionär { get; set; }
|
||||
public bool IsFunktionär { get; set; }
|
||||
|
||||
[Column("active")]
|
||||
public bool Active { get; set; }
|
||||
public bool IsActive { get; set; }
|
||||
|
||||
[Column("iban")]
|
||||
public string? Iban { get; set; }
|
||||
@ -78,7 +78,7 @@ namespace WGneu.Models {
|
||||
public string CountryCode { get; set; }
|
||||
|
||||
[Column("postal_dest")]
|
||||
public string PostalDestId { get; set; }
|
||||
public string PostalDestId { get; private set; }
|
||||
|
||||
[Column("address")]
|
||||
public string Address { get; set; }
|
||||
|
Reference in New Issue
Block a user