RhSolutions-AddIn/Source/Assistant/IProduct.cs
2021-11-29 21:24:44 +03:00

10 lines
154 B
C#

namespace Rehau.Sku.Assist
{
interface IProduct
{
string Sku { get; }
string Name { get; }
string Uri { get; }
}
}