aboutsummaryrefslogtreecommitdiff
path: root/src/Assistant/StoreResponse.cs
diff options
context:
space:
mode:
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; }