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

13 lines
No EOL
435 B
C#

namespace Wonky.Entity.Views;
public class ExternalProductVariantView
{
public string VariantId { get; set; } = "";
public string Name { get; set; } = "";
public string Sku { get; set; } = "";
public string ErpName { get; set; } = "";
public string ErpSku { get; set; } = "";
public string ShortName { get; set; } = "";
public string PictureLink { get; set; } = "";
public bool Selected { get; set; }
}