10 lines
155 B
C#
10 lines
155 B
C#
namespace Rehau.Sku.Assist
|
|
{
|
|
interface IProduct
|
|
{
|
|
string Id { get; }
|
|
string Name { get; }
|
|
string Price { get; }
|
|
}
|
|
}
|