summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Android/ExportImageSourceHandlerAttribute.cs
blob: 4c5c01fbe0f1a9fe11f53946b2f77af2cad9c7ed (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 ExportImageSourceHandlerAttribute : HandlerAttribute
	{
		public ExportImageSourceHandlerAttribute(Type handler, Type target) : base(handler, target)
		{
		}
	}
}