Wonky.Client/Wonky.Entity/Views/ExternalProductListView.cs
2023-05-24 18:57:07 +02:00

12 lines
No EOL
392 B
C#

using System.Collections.Generic;
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();
}