using System.Collections.Generic; namespace Wonky.Entity.Views; public class WorkplaceProductVariant { public string VariantName { get; set; } = ""; public string VariantId { get; set; } = ""; public string VendorItemNo { get; set; } = ""; public List Docs { get; set; } = new(); }