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

16 lines
No EOL
565 B
C#

using System.Security.Cryptography;
namespace Wonky.Entity.DTO;
public class KrvClpPictogramTexts
{
public string AcuteToxicity { get; set; } = "";
public string Corrosive { get; set; } = "";
public string EnvironmentHazard { get; set; } = "";
public string Explosive { get; set; } = "";
public string Flammable { get; set; } = "";
public string HealthHazard { get; set; } = "";
public string Oxidising { get; set; } = "";
public string PressurizedGas { get; set; } = "";
public string SeriousHealthHazard { get; set; } = "";
}