using System.Collections.Generic; using System.ComponentModel.DataAnnotations; namespace Wonky.Entity.DTO; public class BucketDto { [Required] public string EyeCleanerLocation { get; set; } = ""; [Required]public string FirstAidLocation { get; set; } = ""; [Required]public string GlovesStorage { get; set; } = ""; [Required]public string GogglesStorage { get; set; } = ""; [Required]public string MaskStorage { get; set; } = ""; [Required]public string ProductStorage { get; set; } = ""; [Required]public string WasteDeposit { get; set; } = ""; [Required]public string AuthoredBy { get; set; } = ""; [Required]public string ApprovedBy { get; set; } = ""; [Required]public string ApprovedDate { get; set; } = ""; [Required]public string FollowupDate { get; set; } = ""; public List ProductVariants { get; set; } = new(); } public class ProductVariant { [Required] 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; } = ""; }