using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace Wonky.Entity.DTO; public class CrmDocumentDto { // Base account info public string CompanyId { get; set; } = ""; public string Account { get; set; } = ""; public string VatNumber { get; set; } = ""; public string Name { get; set; } = ""; public string Address { get; set; } = ""; public string Address2 { get; set; } = ""; public string City { get; set; }= ""; public string ZipCode { get; set; } = ""; public string SalesRep { get; set; } = ""; public string Phone { get; set; } = ""; public string EMail { get; set; } = ""; // Form entries public string ReferenceNumber { get; set; } = ""; public string YourRef { get; set; } = ""; public string OurRef { get; set; } = ""; public string OrderMessage { get; set; } = ""; // From company or form entry public string DlvName { get; set; } = ""; public string DlvAddress1 { get; set; } = ""; public string DlvAddress2 { get; set; } = ""; public string DlvZipCode { get; set; } = ""; public string DlvCity { get; set; } = ""; }