Wonky.Client/Wonky.Entity/DTO/VisitCompanyDto.cs

11 lines
336 B
C#
Raw Permalink Normal View History

2022-06-10 18:11:38 +02:00
namespace Wonky.Entity.DTO;
2022-06-14 19:00:21 +02:00
public class VisitCompanyDto
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; } = "";
}