Wonky.Client/Wonky.Entity/DTO/KrvClpPictogramTexts.cs

16 lines
565 B
C#
Raw Normal View History

2023-04-08 17:46:26 +02:00
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; } = "";
}