diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2021-12-03 12:57:22 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2021-12-03 12:57:22 +0300 |
commit | b5c71350700a486b8a8d1fa0fe7db32220963eba (patch) | |
tree | d49cfb62454f68333d2c19f5645e13d81cc108c1 /Source/Assistant/IProduct.cs | |
parent | 3ea18ae25e98527aa85835c9221ea01b36560b33 (diff) |
Add Caching and replace HttpClientUtil class to external file
Diffstat (limited to 'Source/Assistant/IProduct.cs')
-rw-r--r-- | Source/Assistant/IProduct.cs | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Source/Assistant/IProduct.cs b/Source/Assistant/IProduct.cs index aca3ff5..de0eccf 100644 --- a/Source/Assistant/IProduct.cs +++ b/Source/Assistant/IProduct.cs @@ -1,9 +1,11 @@ -namespace Rehau.Sku.Assist +using System; + +namespace Rehau.Sku.Assist { interface IProduct { string Sku { get; } string Name { get; } - string Uri { get; } + Uri Uri { get; } } } |