summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WP8/ExportCellAttribute.cs
blob: 96aec6cb6de2494af109804b8ec20d550c06c392 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
using System;

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