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 { 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; } = ""; }