Files
eveo/src/Eve-O-Preview/ApplicationBase/IView.cs
2021-03-01 23:26:23 +02:00

12 lines
204 B
C#

namespace EveOPreview
{
/// <summary>
/// Properties and methods that are common for all views
/// </summary>
public interface IView
{
void Show();
void Hide();
void Close();
}
}