summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Native/IContainable.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Platform.Tizen/Native/IContainable.cs')
-rw-r--r--Xamarin.Forms.Platform.Tizen/Native/IContainable.cs16
1 files changed, 16 insertions, 0 deletions
diff --git a/Xamarin.Forms.Platform.Tizen/Native/IContainable.cs b/Xamarin.Forms.Platform.Tizen/Native/IContainable.cs
new file mode 100644
index 00000000..dfee0cbe
--- /dev/null
+++ b/Xamarin.Forms.Platform.Tizen/Native/IContainable.cs
@@ -0,0 +1,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; }
+ }
+}