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

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