Wonky.Client/Wonky.Entity/Views/InvoiceCompanyView.cs

19 lines
705 B
C#
Raw Normal View History

2022-11-10 12:31:21 +01:00
namespace Wonky.Entity.Views;
public class InvoiceCompanyView
{
public string CompanyId { get; set; } = "";
public string VatNumber { get; set; } = "";
public string Account { get; set; } = "";
public string Name { get; set; } = "";
public string Address1 { get; set; } = "";
public string Address2 { get; set; } = "";
public string ZipCode { get; set; } = "";
public string City { get; set; } = "";
public string Attention { get; set; } = "";
public string Email { get; set; } = "";
public string Mobile { get; set; } = "";
public string Phone { get; set; } = "";
public string Blocked { get; set; } = "";
public string Note { get; set; } = "";
}