Wonky.Client/Wonky.Entity/DTO/SystemQuoteTexts.cs
2023-04-11 15:50:24 +02:00

28 lines
No EOL
1.3 KiB
C#

namespace Wonky.Entity.DTO;
public class SystemQuoteTexts
{
public string QuoteHtmlTitle { get; set; } = "";
public string QuoteDocumentName { get; set; } = "";
public string QuoteDocumentNumber { get; set; } = "";
public string QuoteDocumentDate { get; set; } = "";
public string QuoteCustomerName { get; set; } = "";
public string QuoteCustomerPhone { get; set; } = "";
public string QuoteCustomerEMail { get; set; } = "";
public string QuoteConsultantName { get; set; } = "";
public string QuoteConsultantPhone { get; set; } = "";
public string QuoteConsultantEMail { get; set; } = "";
public string QuoteTotalSum { get; set; } = "";
public string QuoteConditionVatExclusive { get; set; } = "";
public string QuoteConditionValidityPeriod { get; set; } = "";
public string QuoteConditionValidityQuantity { get; set; } = "";
public string QuoteConditionQuestion { get; set; } = "";
public string QuoteGreeting { get; set; } = "";
public string QuoteFooterCompanyName { get; set; } = "";
public string QuoteFooterCompanyPostalAddress { get; set; } = "";
public string QuoteFooterCompanyPhone { get; set; } = "";
public string QuoteFooterCompanyWeb { get; set; } = "";
public string QuoteFooterCompanyVat { get; set; } = "";
}