using System.Windows.Media.Imaging;
namespace Crysome.Server.Model;
public class InventoryDot
{
public string Id { get; set; }
public bool Present { get; set; }
public BitmapImage Icon { get; set; }
}