yavsc/Yavsc/Interfaces/IFormNode.cs

11 lines
186 B
C#

8 years ago
namespace Yavsc.Interfaces
{
public interface IFormNode
{
T GetControl<T>();
bool IsUIControl { get; }
bool IsInputControl { get; }
}
}