RhSolutions-AddIn/src/Assistant/IProduct.cs

10 lines
157 B
C#
Raw Normal View History

2021-12-08 14:45:14 +03:00
namespace RehauSku.Assistant
{
interface IProduct
{
2021-12-03 19:30:35 +03:00
string Id { get; }
string Name { get; }
2021-12-03 22:25:20 +03:00
string Price { get; }
}
}