// ----------------------------------------------------------------------- // // Copyright 2013 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex.Controls { using System.Collections.Generic; using Perspex.Collections; public class Controls : PerspexList { public Controls() { } public Controls(IEnumerable items) : base(items) { } } }