Wonky.Client/Wonky.Entity/Views/WorkplaceProduct.cs

10 lines
274 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 WorkplaceProduct
{
public string TradingName { get; set; } = "";
public string ProductId { get; set; } = "";
public List<WorkplaceProductVariant> Variants { get; set; } = new();
}