summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/RenderWithAttribute.cs
blob: 7517530642bfeddf9cd5931f145b6b003b62c73f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;

namespace Xamarin.Forms
{
	[AttributeUsage(AttributeTargets.Class)]
	public sealed class RenderWithAttribute : Attribute
	{
		public RenderWithAttribute(Type type)
		{
			Type = type;
		}

		public Type Type { get; }
	}
}