aboutsummaryrefslogtreecommitdiff
path: root/src/Assistant/StoreResponse.cs
blob: 1a9b1c56854fc139b9117013d8dfe2112b43a87b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System.Collections.Generic;

namespace RehauSku.Assistant
{
    class StoreResponce
    {
        public Ecommerce Ecommerce { get; set; }
    }

    class Ecommerce
    {
        public List<Product> Impressions { get; set; }
    }

    class Product : IProduct
    {
        public string Id { get; set; }
        public string Name { get; set; }
        public string Price { get; set; }
    }
}