// -----------------------------------------------------------------------
//
// Copyright 2013 MIT Licence. See licence.md for more information.
//
// -----------------------------------------------------------------------
namespace Perspex.Controls
{
using System;
public class ItemsPanelTemplate
{
public ItemsPanelTemplate(Func build)
{
Contract.Requires(build != null);
this.Build = build;
}
public Func Build { get; private set; }
}
}