Rework models

This commit is contained in:
2023-03-14 11:23:03 +01:00
parent fe185ab516
commit 3614445cff
11 changed files with 60 additions and 60 deletions

View File

@ -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; }