summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/ParameterAttribute.cs
blob: d8a072679798f0e32c74e9d23908d246842b6abb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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; }
	}
}