RhSolutions-AddIn/src/Assistant/IProduct.cs
Sergey Chebotar 54fc3320e7 Move to /src
2021-12-26 18:22:32 +03:00

10 lines
157 B
C#

namespace RehauSku.Assistant
{
interface IProduct
{
string Id { get; }
string Name { get; }
string Price { get; }
}
}