using UnityEngine; using System.Collections; namespace UIWidgetsSamples.Shops { /// /// Result order line. /// public class ResultOrderLine : IOrderLine { /// /// Gets or sets the item. /// /// The item. public Item Item { get; set; } /// /// Gets or sets the count. /// /// The count. public int Count { get; set; } } }