Wonky.Client/Wonky.Entity/DTO/KrvProductLabels.cs

16 lines
700 B
C#
Raw Permalink Normal View History

2023-04-08 17:46:26 +02:00
namespace Wonky.Entity.DTO;
public class KrvProductLabels
{
public string TradingNameLabel { get; set; } = "";
public string SupplierLabel { get; set; } = "";
public string WorkplaceLabel { get; set; } = "";
public string UsedForLabel { get; set; } = "";
public string PhraseNameLabel { get; set; } = "";
public string ClpMarkingLabel { get; set; } = "";
public string SeeAlsoLabel { get; set; } = ""; // reference to direct to other riskphrases
public string MalCodeLabel { get; set; } = "";
public string StorageLabel { get; set; } = "";
public string UsageLimitationLabel { get; set; } = "";
public string UsagePrecautionLabel { get; set; } = "";
}