Wonky.Client/Wonky.Entity/Views/ExternalProductListView.cs

12 lines
392 B
C#
Raw Permalink Normal View History

2023-05-21 08:23:47 +02:00
using System.Collections.Generic;
2023-05-15 08:36:23 +02:00
namespace Wonky.Entity.Views;
public class ExternalProductListView
{
public string ProductId { get; set; } = "";
public string TradingName { get; set; } = "";
public string PictureLink { get; set; } = "";
public string ProductCategoryEnum { get; set; } = "";
public List<ExternalProductVariantView> Variants { get; set; } = new();
}