summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IConfigElement.cs
blob: f1ce0b0bdec004680294e60ad8856bafe913bf11 (plain)
1
2
3
4
5
6
7
8

namespace Xamarin.Forms
{
	public interface IConfigElement<out T> where T : Element
	{
		T Element { get; }
	}
}