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

18 lines
No EOL
781 B
C#

namespace Wonky.Entity.DTO;
public class SystemQuoteLabels
{
public string QuoteDocumentDateLabel { get; set; } = "";
public string QuoteNameLabel { get; set; } = "";
public string QuoteEMailLabel { get; set; } = "";
public string QuotePhoneLabel { get; set; } = "";
public string QuoteConsultantLabel { get; set; } = "";
public string QuoteItemColumnLabel { get; set; } = "";
public string QuoteQuantityColumnLabel { get; set; } = "";
public string QuoteDescriptionColumnLabel { get; set; } = "";
public string QuotePriceColumnLabel { get; set; } = "";
public string QuoteDiscountColumnLabel { get; set; } = "";
public string QuoteLineSumColumnLabel { get; set; } = "";
public string QuoteConditionsLabel { get; set; } = "";
}