Wonky.Client/Wonky.Entity/DTO/KrvWasteLabels.cs

13 lines
508 B
C#
Raw Normal View History

2023-04-08 17:46:26 +02:00
namespace Wonky.Entity.DTO;
public class KrvWasteLabels
{
public string WasteHeaderLabel { get; set; } = "";
public string InstructionLabel { get; set; } = "";
public string SpillingLabel { get; set; } = "";
public string WastePictogramLabel { get; set; } = "";
public string WasteDepositLabel { get; set; } = "";
public string WasteGroupLabel { get; set; } = "";
public string WasteSubGroupLabel { get; set; } = "";
public string WasteCategoryLabel { get; set; } = "";
}