summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/ParameterAttribute.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/ParameterAttribute.cs')
-rw-r--r--Xamarin.Forms.Core/ParameterAttribute.cs15
1 files changed, 15 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/ParameterAttribute.cs b/Xamarin.Forms.Core/ParameterAttribute.cs
new file mode 100644
index 00000000..d8a07267
--- /dev/null
+++ b/Xamarin.Forms.Core/ParameterAttribute.cs
@@ -0,0 +1,15 @@
+using System;
+
+namespace Xamarin.Forms
+{
+ [AttributeUsage(AttributeTargets.Parameter)]
+ internal sealed class ParameterAttribute : Attribute
+ {
+ public ParameterAttribute(string name)
+ {
+ Name = name;
+ }
+
+ public string Name { get; set; }
+ }
+} \ No newline at end of file