using UnityEngine; using System.Collections; using System.Collections.Generic; namespace UIWidgetsSamples.Shops { /// /// IOrderLine. /// public interface IOrderLine { /// /// Gets or sets the item. /// /// The item. Item Item {get; set; } /// /// Gets or sets the count. /// /// The count. int Count {get; set; } } }