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

8 lines
239 B
C#
Raw Normal View History

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();
}