Wonky.Client/Wonky.Entity/DTO/VisitCompanyDto.cs
Frede Hundewadt 1fab58610e wip
2022-06-14 19:00:21 +02:00

11 lines
No EOL
336 B
C#

namespace Wonky.Entity.DTO;
public class VisitCompanyDto
{
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; } = "";
}