summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IViewContainer.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/IViewContainer.cs')
-rw-r--r--Xamarin.Forms.Core/IViewContainer.cs9
1 files changed, 9 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/IViewContainer.cs b/Xamarin.Forms.Core/IViewContainer.cs
new file mode 100644
index 00000000..9b2e0570
--- /dev/null
+++ b/Xamarin.Forms.Core/IViewContainer.cs
@@ -0,0 +1,9 @@
+using System.Collections.Generic;
+
+namespace Xamarin.Forms
+{
+ public interface IViewContainer<T> where T : VisualElement
+ {
+ IList<T> Children { get; }
+ }
+} \ No newline at end of file