Wonky.Client/Wonky.Entity/Views/WorkplaceProductVariant.cs

11 lines
331 B
C#
Raw Permalink Normal View History

2023-05-21 08:23:47 +02:00
using System.Collections.Generic;
2023-04-02 14:39:23 +02:00
namespace Wonky.Entity.Views;
public class WorkplaceProductVariant
{
public string VariantName { get; set; } = "";
public string VariantId { get; set; } = "";
2023-05-27 16:37:17 +02:00
public string VendorItemNo { get; set; } = "";
2023-04-02 14:39:23 +02:00
public List<WorkplaceProductVariantDoc> Docs { get; set; } = new();
}