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

14 lines
181 B
C#

using System.Collections.Generic;
namespace UIWidgetsSamples.Shops
{
public interface IOrder
{
List<IOrderLine> GetOrderLines();
int OrderLinesCount();
int Total();
}
}