summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IListProxy.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Xamarin.Forms.Core/IListProxy.cs')
-rw-r--r--Xamarin.Forms.Core/IListProxy.cs12
1 files changed, 12 insertions, 0 deletions
diff --git a/Xamarin.Forms.Core/IListProxy.cs b/Xamarin.Forms.Core/IListProxy.cs
new file mode 100644
index 00000000..cc6fd500
--- /dev/null
+++ b/Xamarin.Forms.Core/IListProxy.cs
@@ -0,0 +1,12 @@
+
+using System.Collections;
+using System.Collections.Specialized;
+
+namespace Xamarin.Forms
+{
+ public interface IListProxy : IList
+ {
+ event NotifyCollectionChangedEventHandler CollectionChanged;
+ IEnumerable ProxiedEnumerable { get; }
+ }
+}