Files
2026-02-21 16:45:37 +08:00

10 lines
125 B
C#

namespace UIWidgetsSamples.Shops
{
public interface IOrderLine
{
Item Item { get; set; }
int Count { get; set; }
}
}