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

19 lines
No EOL
872 B
C#

namespace Wonky.Entity.DTO;
public class KrvProtectionLabels
{
public string ProtectionHeaderLabel { get; set; } = "";
public string MaskPictogramLabel { get; set; } = "";
public string MaskTypeLabel { get; set; } = "";
public string MaskFilterLabel { get; set; } = "";
public string MaskInstructionLabel { get; set; } = "";
public string MaskStorageLabel { get; set; } = "";
public string GlovesPictogramLabel { get; set; } = "";
public string GlovesTypeLabel { get; set; } = "";
public string GlovesInstructionLabel { get; set; } = "";
public string GlovesStorageLabel { get; set; } = "";
public string GogglesPictogramLabel { get; set; } = "";
public string GogglesTypeLabel { get; set; } = "";
public string GogglesInstructionLabel { get; set; } = "";
public string GogglesStorageLabel { get; set; } = "";
}