summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Native/IContainable.cs
blob: dfee0cbebedfb7031319217f41b381b1eaa62074 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
using System.Collections.Generic;

namespace Xamarin.Forms.Platform.Tizen.Native
{
	/// <summary>
	/// Interface defining methods for managing elements of the container.
	/// </summary>
	/// <typeparam name="T">The type of element that can be added to the container.</typeparam>
	public interface IContainable<T>
	{
		/// <summary>
		/// The children collection of an element.
		/// </summary>
		IList<T> Children { get; }
	}
}