summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.MacOS/Renderers/NSPageContainer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.MacOS/Renderers/NSPageContainer.cs')
-rw-r--r--Xamarin.Forms.Platform.MacOS/Renderers/NSPageContainer.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/Xamarin.Forms.Platform.MacOS/Renderers/NSPageContainer.cs b/Xamarin.Forms.Platform.MacOS/Renderers/NSPageContainer.cs
new file mode 100644
index 00000000..80f409cc
--- /dev/null
+++ b/Xamarin.Forms.Platform.MacOS/Renderers/NSPageContainer.cs
@@ -0,0 +1,17 @@
+using Foundation;
+
+namespace Xamarin.Forms.Platform.MacOS
+{
+ internal class NSPageContainer : NSObject
+ {
+ public NSPageContainer(Page element, int index)
+ {
+ Page = element;
+ Index = index;
+ }
+
+ public Page Page { get; }
+
+ public int Index { get; set; }
+ }
+} \ No newline at end of file