// ----------------------------------------------------------------------- // // Copyright 2014 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex.Collections { using System.Collections; using System.Collections.Generic; public interface IPerspexList : IList, IList, IPerspexReadOnlyList { } }