diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2021-12-03 19:30:35 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2021-12-03 19:30:35 +0300 |
commit | 915929fa9d0738a4e4db4134ea522b343ab2c1d2 (patch) | |
tree | e58fc704c59283b2285e775781a734bc96992a03 /Source/Assistant/IProduct.cs | |
parent | c748be35c4bc35dc431066fb390945ee0c986ea3 (diff) |
Add Json parsing and refactoring
Diffstat (limited to 'Source/Assistant/IProduct.cs')
-rw-r--r-- | Source/Assistant/IProduct.cs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/Assistant/IProduct.cs b/Source/Assistant/IProduct.cs index de0eccf..54b3dd0 100644 --- a/Source/Assistant/IProduct.cs +++ b/Source/Assistant/IProduct.cs @@ -4,8 +4,7 @@ namespace Rehau.Sku.Assist { interface IProduct { - string Sku { get; } + string Id { get; } string Name { get; } - Uri Uri { get; } } } |