10 lines
231 B
C#
10 lines
231 B
C#
|
using System.Windows.Forms;
|
||
|
|
||
|
namespace ArducopterConfigurator
|
||
|
{
|
||
|
public interface IView<Tmodel> where Tmodel : IPresentationModel
|
||
|
{
|
||
|
void SetDataContext(Tmodel model);
|
||
|
Control Control { get; }
|
||
|
}
|
||
|
}
|