aboutsummaryrefslogtreecommitdiff
path: root/Source/Assistant/StoreResponse.cs
diff options
context:
space:
mode:
authorSergey Chebotar <s.chebotar@gmail.com>2021-12-03 19:30:35 +0300
committerSergey Chebotar <s.chebotar@gmail.com>2021-12-03 19:30:35 +0300
commit915929fa9d0738a4e4db4134ea522b343ab2c1d2 (patch)
treee58fc704c59283b2285e775781a734bc96992a03 /Source/Assistant/StoreResponse.cs
parentc748be35c4bc35dc431066fb390945ee0c986ea3 (diff)
Add Json parsing and refactoring
Diffstat (limited to 'Source/Assistant/StoreResponse.cs')
-rw-r--r--Source/Assistant/StoreResponse.cs21
1 files changed, 21 insertions, 0 deletions
diff --git a/Source/Assistant/StoreResponse.cs b/Source/Assistant/StoreResponse.cs
new file mode 100644
index 0000000..78fe846
--- /dev/null
+++ b/Source/Assistant/StoreResponse.cs
@@ -0,0 +1,21 @@
+using System.Collections.Generic;
+
+namespace Rehau.Sku.Assist
+{
+ 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; }
+ }
+} \ No newline at end of file