aboutsummaryrefslogtreecommitdiff
path: root/Source/Assistant/IProduct.cs
diff options
context:
space:
mode:
authorSerghei Cebotari <51533848+schebotar@users.noreply.github.com>2021-12-03 23:07:10 +0300
committerGitHub <noreply@github.com>2021-12-03 23:07:10 +0300
commitf6f6678ccf54f0513726fbb61a99d437ed68bb81 (patch)
treec7a0b8ef9ea39a8c7c801b41ff37ff544c73d3bf /Source/Assistant/IProduct.cs
parentf5799a28eaef3f3ea24ba56dc16970d6203b73fd (diff)
parent4acde8a85b29ca968739bf1bf38d614a2830f6e7 (diff)
Merge pull request #6 from schebotar/dev
Dev
Diffstat (limited to 'Source/Assistant/IProduct.cs')
-rw-r--r--Source/Assistant/IProduct.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/Source/Assistant/IProduct.cs b/Source/Assistant/IProduct.cs
new file mode 100644
index 0000000..d5db286
--- /dev/null
+++ b/Source/Assistant/IProduct.cs
@@ -0,0 +1,9 @@
+namespace Rehau.Sku.Assist
+{
+ interface IProduct
+ {
+ string Id { get; }
+ string Name { get; }
+ string Price { get; }
+ }
+}