using System.Collections.Generic; namespace Xamarin.Forms.Platform.Tizen.Native { /// /// Interface defining methods for managing elements of the container. /// /// The type of element that can be added to the container. public interface IContainable { /// /// The children collection of an element. /// IList Children { get; } } }