summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.MacOS/Renderers/NSPageContainer.cs
blob: 80f409cc6654271818c9759b7d722e23829f2b11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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; }
	}
}