Added generic model describing ios/tvos/macos types

This commit is contained in:
7sharp9 2016-03-18 11:51:33 +00:00
Родитель 1655f9f510
Коммит cda666c3bf
1 изменённых файлов: 22 добавлений и 0 удалений

Просмотреть файл

@ -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 }