Wonky.Client/Wonky.Entity/Views/WorkplaceProduct.cs
Frede Hundewadt 532cd08827 WIP
2023-05-21 08:23:47 +02:00

10 lines
No EOL
274 B
C#

using System.Collections.Generic;
namespace Wonky.Entity.Views;
public class WorkplaceProduct
{
public string TradingName { get; set; } = "";
public string ProductId { get; set; } = "";
public List<WorkplaceProductVariant> Variants { get; set; } = new();
}