Wonky.Client/Wonky.Entity/DTO/SystemQuoteTexts.cs

28 lines
1.3 KiB
C#
Raw Normal View History

2023-04-10 17:22:24 +02:00
namespace Wonky.Entity.DTO;
public class SystemQuoteTexts
{
2023-04-11 15:50:24 +02:00
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; } = "";
2023-04-10 17:22:24 +02:00
2023-04-11 15:50:24 +02:00
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; } = "";
2023-04-10 17:22:24 +02:00
}