2021-12-03 19:30:35 +03:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
2021-12-08 14:45:14 +03:00
|
|
|
|
namespace RehauSku.Assistant
|
2021-12-03 19:30:35 +03:00
|
|
|
|
{
|
|
|
|
|
public class StoreResponce
|
|
|
|
|
{
|
|
|
|
|
public Ecommerce Ecommerce { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class Ecommerce
|
|
|
|
|
{
|
|
|
|
|
public List<Product> Impressions { get; set; }
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public class Product : IProduct
|
|
|
|
|
{
|
|
|
|
|
public string Id { get; set; }
|
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
public string Price { get; set; }
|
|
|
|
|
}
|
|
|
|
|
}
|