RhSolutions-AddIn/Source/Assistant/IProduct.cs

10 lines
154 B
C#
Raw Normal View History

2021-12-08 13:58:37 +03:00
namespace RehauSku.Assist
{
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; }
}
}