Wonky.Client/Wonky.Entity/Views/ActivityCompanyView.cs

11 lines
342 B
C#
Raw Permalink Normal View History

2022-06-14 19:00:21 +02:00
namespace Wonky.Entity.Views;
2022-06-10 18:11:38 +02:00
2022-06-14 19:00:21 +02:00
public class ActivityCompanyView
2022-06-10 18:11:38 +02:00
{
public string CompanyId { get; set; } = "";
public string Account { get; set; } = "";
public string Name { get; set; } = "";
public string ZipCity { get; set; } = "";
public string Phone { get; set; } = "";
public string VatNumber { get; set; } = "";
}