11 lines
233 B
C#
11 lines
233 B
C#
namespace Xylem.Common.Production.ProductionUiCordonel.UserControls
|
|
{
|
|
public interface IUserControl
|
|
{
|
|
/// <summary>
|
|
/// Clear the content of the control
|
|
/// </summary>
|
|
void Clear();
|
|
}
|
|
}
|