Wonky.Client/Wonky.Entity/DTO/SystemQuoteLabels.cs

18 lines
721 B
C#
Raw Normal View History

2023-04-10 17:22:24 +02:00
namespace Wonky.Entity.DTO;
public class SystemQuoteLabels
{
public string DocumentDateLabel { get; set; } = "";
public string NameLabel { get; set; } = "";
public string EMailLabel { get; set; } = "";
public string PhoneLabel { get; set; } = "";
public string ConsultantLabel { get; set; } = "";
public string ItemColumnLabel { get; set; } = "";
public string QuantityColumnLabel { get; set; } = "";
public string DescriptionColumnLabel { get; set; } = "";
public string PriceColumnLabel { get; set; } = "";
public string DiscountColumnLabel { get; set; } = "";
public string LineSumColumnLabel { get; set; } = "";
public string ConditionsLabel { get; set; } = "";
}