Wonky.Client/Wonky.Entity/DTO/QuotePrintTexts.cs
2023-04-08 17:46:26 +02:00

27 lines
No EOL
1.3 KiB
C#

namespace Wonky.Entity.DTO;
public class QuotePrintTexts
{
public string OfferHtmlTitle { get; set; } = "";
public string OfferDocumentName { get; set; } = "";
public string OfferDocumentNumber { get; set; } = "";
public string OfferDocumentDate { get; set; } = "";
public string OfferCustomerName { get; set; } = "";
public string OfferCustomerPhone { get; set; } = "";
public string OfferCustomerEMail { get; set; } = "";
public string OfferConsultantName { get; set; } = "";
public string OfferConsultantPhone { get; set; } = "";
public string OfferConsultantEMail { get; set; } = "";
public string OfferTotalSum { get; set; } = "";
public string OfferConditionVatExclusive { get; set; } = "";
public string OfferConditionValidityPeriod { get; set; } = "";
public string OfferConditionValidityQuantity { get; set; } = "";
public string OfferConditionQuestion { get; set; } = "";
public string OfferGreeting { get; set; } = "";
public string OfferFooterCompanyName { get; set; } = "";
public string OfferFooterCompanyPostalAddress { get; set; } = "";
public string OfferFooterCompanyPhone { get; set; } = "";
public string OfferFooterCompanyWeb { get; set; } = "";
public string OfferFooterCompanyVat { get; set; } = "";
}