Wonky.Client/Wonky.Entity/DTO/WorkplaceBopCreate.cs
Frede Hundewadt d77f3b612f WIP
2023-05-15 08:36:23 +02:00

29 lines
No EOL
983 B
C#

namespace Wonky.Entity.DTO;
public class WorkplaceBopCreate
{
public string EyeCleanerLocation { get; set; } = "";
public string FirstAidLocation { get; set; } = "";
public string GlovesStorage { get; set; } = "";
public string GogglesStorage { get; set; } = "";
public string MaskStorage { get; set; } = "";
public string ProductStorage { get; set; } = "";
public string WasteDeposit { get; set; } = "";
public string AuthoredBy { get; set; } = "";
public string ApprovedBy { get; set; } = "";
public string ApprovedDate { get; set; } = "";
public string FollowupDate { get; set; } = "";
public List<ProductVariants> ProductVariants { get; set; } = new();
}
public class ProductVariants
{
public string VariantId { get; set; } = "";
public string S5A { get; set; } = "";
public string S9A { get; set; } = "";
// Sweden
// yearly consumption and product exposure
// public string S11A { get; set; } = "";
}