aboutsummaryrefslogtreecommitdiff
path: root/src/Assistant/IProduct.cs
diff options
context:
space:
mode:
authorSergey Chebotar <s.chebotar@gmail.com>2021-11-29 17:12:56 +0300
committerSergey Chebotar <s.chebotar@gmail.com>2021-11-29 17:12:56 +0300
commit2afcbbf08c21aa7368361269f24240147aa79a00 (patch)
tree9f6494fb2f70d086059619c0dce6316b338b69ca /src/Assistant/IProduct.cs
parentd176a023f06d70cb577e64d1a917e77d677d2a2b (diff)
Организация директорий проекта
Diffstat (limited to 'src/Assistant/IProduct.cs')
-rw-r--r--src/Assistant/IProduct.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/Assistant/IProduct.cs b/src/Assistant/IProduct.cs
new file mode 100644
index 0000000..aca3ff5
--- /dev/null
+++ b/src/Assistant/IProduct.cs
@@ -0,0 +1,9 @@
+namespace Rehau.Sku.Assist
+{
+ interface IProduct
+ {
+ string Sku { get; }
+ string Name { get; }
+ string Uri { get; }
+ }
+}