summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Android/ExportRendererAttribute.cs
blob: bf18653b6e4386425e720e281e193411d37bea0c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;

namespace Xamarin.Forms
{
	[AttributeUsage(AttributeTargets.Assembly, AllowMultiple = true)]
	public sealed class ExportRendererAttribute : HandlerAttribute
	{
		public ExportRendererAttribute(Type handler, Type target) : base(handler, target)
		{
		}
	}
}