2016-03-22 23:02:25 +03:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace Xamarin.Forms
|
|
|
|
{
|
|
|
|
[AttributeUsage(AttributeTargets.Parameter)]
|
|
|
|
internal sealed class ParameterAttribute : Attribute
|
|
|
|
{
|
|
|
|
public ParameterAttribute(string name)
|
|
|
|
{
|
|
|
|
Name = name;
|
|
|
|
}
|
|
|
|
|
2016-09-26 23:29:47 +03:00
|
|
|
public string Name { get; }
|
2016-03-22 23:02:25 +03:00
|
|
|
}
|
|
|
|
}
|