using System; namespace SpellBoundAR.Items.Inventories { public interface IInventoryEntry { public event Action OnQuantityChanged; public event Action OnViewsChanged; public string ItemTypeID { get; } public IItemTypeData ItemTypeData { get; } public DateTime Timestamp { get; } public int Quantity { get; set; } public int Views { get; set; } } }