Wonky.Client/Wonky.Client/Models/CatalogDrawer.cs
Frede Hundewadt 2b65bfe8d2 adding product catalog without price for b2b product lookup
refactor namespace to distinguish better product catalog from price catalog
2023-10-29 04:29:27 +01:00

10 lines
No EOL
257 B
C#

using Wonky.Entity.Views;
namespace Wonky.Client.Models;
public class CatalogDrawer
{
public const string Label = "CountryPriceCatalog";
public DateTime LastDateModified { get; set; }
public List<SalesItemView> Content { get; set; } = new();
}