File IProcessable.cs
File List > LemonUI > LemonUI > IProcessable.cs
Go to the documentation of this file
namespace LemonUI
{
public interface IProcessable
{
#region Properties
bool Visible { get; set; }
#endregion
#region Functions
void Process();
#endregion
}
}