using Avalonia.Controls; namespace Nonemm.App.Windows; /// A window the entry window tells to redraw when the log changes. public abstract class RefreshableWindow : Window { public abstract void Refresh(); }