aboutsummaryrefslogtreecommitdiff
path: root/Assistant/IProduct.cs
diff options
context:
space:
mode:
authorSergey Chebotar <s.chebotar@gmail.com>2021-11-29 11:26:25 +0300
committerSergey Chebotar <s.chebotar@gmail.com>2021-11-29 11:26:25 +0300
commit0fe8e038af7f33eae824bba263e7c54dea829679 (patch)
treeb71636e6ee0c558f491bccd93c0236dbccbc67d6 /Assistant/IProduct.cs
parentf5234e956c79d3019e975a4d3550574c92f769e7 (diff)
Добавлен кэшинг результатов запроса, интерфейс IProduct
Diffstat (limited to 'Assistant/IProduct.cs')
-rw-r--r--Assistant/IProduct.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/Assistant/IProduct.cs b/Assistant/IProduct.cs
new file mode 100644
index 0000000..aca3ff5
--- /dev/null
+++ b/Assistant/IProduct.cs
@@ -0,0 +1,9 @@
+namespace Rehau.Sku.Assist
+{
+ interface IProduct
+ {
+ string Sku { get; }
+ string Name { get; }
+ string Uri { get; }
+ }
+}