aboutsummaryrefslogtreecommitdiff
path: root/src/Assistant/StoreResponse.cs
diff options
context:
space:
mode:
authorSergey Chebotar <s.chebotar@gmail.com>2022-02-02 18:10:29 +0300
committerSergey Chebotar <s.chebotar@gmail.com>2022-02-02 18:10:29 +0300
commit0258eb4d2bf82c03be2b0eb2deed5643bb78843e (patch)
tree48fa11685ed6b717752d02c006c12636de68edb6 /src/Assistant/StoreResponse.cs
parent1dfbfaa461479a14cd75c6fc5f6a5082e61c6371 (diff)
Incapsulate some classes
Diffstat (limited to 'src/Assistant/StoreResponse.cs')
-rw-r--r--src/Assistant/StoreResponse.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Assistant/StoreResponse.cs b/src/Assistant/StoreResponse.cs
index 8e1759d..1a9b1c5 100644
--- a/src/Assistant/StoreResponse.cs
+++ b/src/Assistant/StoreResponse.cs
@@ -2,17 +2,17 @@
namespace RehauSku.Assistant
{
- public class StoreResponce
+ class StoreResponce
{
public Ecommerce Ecommerce { get; set; }
}
- public class Ecommerce
+ class Ecommerce
{
public List<Product> Impressions { get; set; }
}
- public class Product : IProduct
+ class Product : IProduct
{
public string Id { get; set; }
public string Name { get; set; }