using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Toolbox.Library.Forms;
using System.Windows.Forms;
namespace Toolbox.Library
{
///
/// Represets a control to load from a for an .
///
public interface IEditor where T : UserControl
{
T OpenForm();
void FillEditor(UserControl Editor);
}
}