Wonky.Client/Wonky.Entity/DTO/SystemQuoteTexts.cs
2023-04-10 17:22:24 +02:00

28 lines
No EOL
1.2 KiB
C#

namespace Wonky.Entity.DTO;
public class SystemQuoteTexts
{
public string HtmlTitle { get; set; } = "";
public string DocumentName { get; set; } = "";
public string DocumentNumber { get; set; } = "";
public string DocumentDate { get; set; } = "";
public string CustomerName { get; set; } = "";
public string CustomerPhone { get; set; } = "";
public string CustomerEMail { get; set; } = "";
public string ConsultantName { get; set; } = "";
public string ConsultantPhone { get; set; } = "";
public string ConsultantEMail { get; set; } = "";
public string TotalSum { get; set; } = "";
public string ConditionVatExclusive { get; set; } = "";
public string ConditionValidityPeriod { get; set; } = "";
public string ConditionValidityQuantity { get; set; } = "";
public string ConditionQuestion { get; set; } = "";
public string Greeting { get; set; } = "";
public string FooterCompanyName { get; set; } = "";
public string FooterCompanyPostalAddress { get; set; } = "";
public string FooterCompanyPhone { get; set; } = "";
public string FooterCompanyWeb { get; set; } = "";
public string FooterCompanyVat { get; set; } = "";
}