// -----------------------------------------------------------------------
//
// Copyright 2014 MIT Licence. See licence.md for more information.
//
// -----------------------------------------------------------------------
namespace Perspex
{
public class ReadOnlyPerspexProperty
{
public ReadOnlyPerspexProperty(PerspexProperty property)
{
this.Property = property;
}
internal PerspexProperty Property { get; private set; }
}
}