3f9a077dbd
git-svn-id: https://arducopter.googlecode.com/svn/trunk@1153 f9c3cf11-9bcb-44bc-f272-b75c42450872
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; }
|
|
}
|
|
} |