summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/ExportRendererHandler.cs
blob: dc6a3ae6d8ba825adf549fd00373af4520f90e86 (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 ExportHandlerAttribute : HandlerAttribute
	{
		public ExportHandlerAttribute(Type handler, Type target) : base(handler, target)
		{
		}
	}
}