10 lines
157 B
C#
10 lines
157 B
C#
namespace RehauSku.Assistant
|
|
{
|
|
interface IProduct
|
|
{
|
|
string Id { get; }
|
|
string Name { get; }
|
|
string Price { get; }
|
|
}
|
|
}
|