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