summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IViewContainer.cs
blob: 9b2e05704495f41f129f069c5db1b1cdd831ccd2 (plain)
1
2
3
4
5
6
7
8
9
using System.Collections.Generic;

namespace Xamarin.Forms
{
	public interface IViewContainer<T> where T : VisualElement
	{
		IList<T> Children { get; }
	}
}