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