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

16 lines
No EOL
700 B
C#

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; } = "";
}