summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Core/IListProxy.cs
blob: cc6fd500eaa9e2e922e56b6ed5abda4827258e31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12

using System.Collections;
using System.Collections.Specialized;

namespace Xamarin.Forms
{
	public interface IListProxy : IList
	{
		event NotifyCollectionChangedEventHandler CollectionChanged;
		IEnumerable ProxiedEnumerable { get; }
	}
}