summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/BindablePropertyKey.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/BindablePropertyKey.cs')
-rw-r--r--Xamarin.Forms.Core/BindablePropertyKey.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/BindablePropertyKey.cs b/Xamarin.Forms.Core/BindablePropertyKey.cs
new file mode 100644
index 00000000..a4b9f4a4
--- /dev/null
+++ b/Xamarin.Forms.Core/BindablePropertyKey.cs
@@ -0,0 +1,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; }
+ }
+} \ No newline at end of file