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

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