summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/BindablePropertyKey.cs
blob: a4b9f4a457f687c4a61cdbf3d87f12064ee6a680 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;

namespace Xamarin.Forms
{
	public sealed class BindablePropertyKey
	{
		internal BindablePropertyKey(BindableProperty property)
		{
			if (property == null)
				throw new ArgumentNullException("property");

			BindableProperty = property;
		}

		public BindableProperty BindableProperty { get; private set; }
	}
}