// -----------------------------------------------------------------------
//
// Copyright 2015 MIT Licence. See licence.md for more information.
//
// -----------------------------------------------------------------------
namespace Perspex.Controls
{
using System.Collections.Generic;
using Perspex.Collections;
///
/// A collection of s.
///
public class Controls : PerspexList
{
///
/// Initializes a new instance of the class.
///
public Controls()
{
}
///
/// Initializes a new instance of the class.
///
/// The initial items in the collection.
public Controls(IEnumerable items)
: base(items)
{
}
}
}