summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.iOS/Renderers/ExportImageSourceHandlerAttribute.cs
blob: 59e96e1f6df188ab59fa01c058209a4ab4200281 (plain)
1
2
3
4
5
6
7
8
9
10
11
using System;

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