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

21 lines
454 B
C#

namespace Rehau.Sku.Assist
{
public class Product : IProduct
{
public string Sku { get; }
public string Name { get; }
public string Uri => throw new System.NotImplementedException();
public Product(string sku, string name)
{
Sku = sku;
Name = name;
}
public override string ToString()
{
return $"{this.Name} ({this.Sku})";
}
}
}