10 lines
125 B
C#
10 lines
125 B
C#
namespace UIWidgetsSamples.Shops
|
|
{
|
|
public interface IOrderLine
|
|
{
|
|
Item Item { get; set; }
|
|
|
|
int Count { get; set; }
|
|
}
|
|
}
|