2019-03-14 16:24:37 +01:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
using System.Windows.Media;
|
|
|
|
|
|
|
|
|
|
namespace CzokoŚmieciarka.WPF.Models
|
|
|
|
|
{
|
|
|
|
|
public class Tile
|
|
|
|
|
{
|
|
|
|
|
public string Data { get; set; }
|
2019-03-20 16:02:05 +01:00
|
|
|
|
public IObject Object { get; set; }
|
2019-03-14 16:24:37 +01:00
|
|
|
|
}
|
|
|
|
|
}
|