Files
eveo/Eve-O-Preview/ApplicationBase/IView.cs
2016-05-29 13:18:46 +03: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();
}
}