namespace Wonky.Entity.Views; public class ReportItemCustomer { /// /// Company name /// public string Name { get; set; } = ""; /// /// Company account /// public string Account { get; set; } = ""; /// /// Company office phone /// public string Phone { get; set; } = ""; /// /// Company VAT registration number /// public string VatNumber { get; set; } = ""; /// /// Company address city name /// public string City { get; set; } = ""; /// /// Company address postal coce /// public string ZipCode { get; set; } = ""; /// /// Company address line 1 /// public string Address1 { get; set; } = ""; /// /// Company address address line 2 /// public string Address2 { get; set; } = ""; }