diff --git a/src/Xamarin.iOSProviders/Model.fs b/src/Xamarin.iOSProviders/Model.fs new file mode 100644 index 0000000..481138b --- /dev/null +++ b/src/Xamarin.iOSProviders/Model.fs @@ -0,0 +1,22 @@ +namespace Xamarin.UIProviders.DesignTime +open System +open System.IO +open System.Xml +open System.Xml.Linq + +type Outlet = { + Property:string + ElementName: string } + +type Action = { + Selector:string + ElementName: string } + +type ViewController = { + XmlType: string + CustomClass : string + Outlets: Outlet List + Actions: Action List} + +type Scene = { + ViewController : ViewController } \ No newline at end of file