11 lines
140 B
C#
11 lines
140 B
C#
using System;
|
|
|
|
namespace Rehau.Sku.Assist
|
|
{
|
|
interface IProduct
|
|
{
|
|
string Id { get; }
|
|
string Name { get; }
|
|
}
|
|
}
|