using InABox.Core; namespace InABox.Avalonia { public interface IQueueUpdater { void ProcessQueue(); } public interface IQueueUpdater : IQueueUpdater where TEntity : Entity, IPersistent, IRemotable, new() { void Add(TEntity entity); TEntity[] Items { get; } } }