Wonky.Client/Wonky.Entity/DTO/ReportVisitDto.cs

11 lines
335 B
C#
Raw Normal View History

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