common/Production/ProductionUiCordonel/UserControls/IUserControl.cs
2026-04-23 17:50:07 +02:00

11 lines
233 B
C#

namespace Xylem.Common.Production.ProductionUiCordonel.UserControls
{
public interface IUserControl
{
/// <summary>
/// Clear the content of the control
/// </summary>
void Clear();
}
}