diff options
author | Sergey Chebotar <s.chebotar@gmail.com> | 2021-12-03 22:25:20 +0300 |
---|---|---|
committer | Sergey Chebotar <s.chebotar@gmail.com> | 2021-12-03 22:25:20 +0300 |
commit | 355e2d36729b607c80b75a4e78342ed487cc56d4 (patch) | |
tree | d86059a3952bd9c1d2b147aed205e81385afa232 /Source/Assistant/IProduct.cs | |
parent | 915929fa9d0738a4e4db4134ea522b343ab2c1d2 (diff) |
Add RAUPRICE function. Refactoring.
Diffstat (limited to 'Source/Assistant/IProduct.cs')
-rw-r--r-- | Source/Assistant/IProduct.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/Assistant/IProduct.cs b/Source/Assistant/IProduct.cs index 54b3dd0..d5db286 100644 --- a/Source/Assistant/IProduct.cs +++ b/Source/Assistant/IProduct.cs @@ -1,10 +1,9 @@ -using System; - -namespace Rehau.Sku.Assist +namespace Rehau.Sku.Assist { interface IProduct { string Id { get; } string Name { get; } + string Price { get; } } } |