You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
442 B
20 lines
442 B
2 years ago
|
using UnityEngine;
|
||
|
using System.Collections;
|
||
|
|
||
|
namespace UIWidgetsSamples.Shops {
|
||
|
/// <summary>
|
||
|
/// Result order line.
|
||
|
/// </summary>
|
||
|
public class ResultOrderLine : IOrderLine {
|
||
|
/// <summary>
|
||
|
/// Gets or sets the item.
|
||
|
/// </summary>
|
||
|
/// <value>The item.</value>
|
||
|
public Item Item { get; set; }
|
||
|
/// <summary>
|
||
|
/// Gets or sets the count.
|
||
|
/// </summary>
|
||
|
/// <value>The count.</value>
|
||
|
public int Count { get; set; }
|
||
|
}
|
||
|
}
|