11 lines
165 B
C#
11 lines
165 B
C#
namespace EnglewoodLAB.UI
|
|
{
|
|
public interface IPanelControl
|
|
{
|
|
void Reset();
|
|
void Accept();
|
|
void Open();
|
|
void Close();
|
|
}
|
|
}
|