Wonky.Client/Wonky.Entity/Views/WorkplaceProductVariant.cs
Frede Hundewadt f90e745e1a wip: v148.0
2023-05-27 16:37:17 +02:00

11 lines
No EOL
331 B
C#

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<WorkplaceProductVariantDoc> Docs { get; set; } = new();
}