using System; namespace Rehau.Sku.Assist { interface IProduct { string Id { get; } string Name { get; } } }