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

namespace Xamarin.Forms
{
	[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)]
	public class DependencyAttribute : Attribute
	{
		public DependencyAttribute(Type implementorType)
		{
			Implementor = implementorType;
		}

		internal Type Implementor { get; private set; }
	}
}