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