aboutsummaryrefslogtreecommitdiff
path: root/Mundus/Service/Tiles/Items/ItemTile.cs
blob: 225e360a11483f0c1977978be7d0d81b5b5b4bfb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
namespace Mundus.Service.Tiles.Items 
{
    public abstract class ItemTile : ITile 
    {
        public string stock_id { get; private set; }

        protected ItemTile(ItemTile item) : this(item.stock_id)
        { 
        }

        public ItemTile(string stock_id) 
        {
            this.stock_id = stock_id;
        }
    }
}