// -----------------------------------------------------------------------
//
// Copyright 2013 MIT Licence. See licence.md for more information.
//
// -----------------------------------------------------------------------
namespace Perspex.Controls
{
public class DefinitionBase : PerspexObject
{
public static readonly PerspexProperty SharedSizeGroupProperty =
PerspexProperty.Register("SharedSizeGroup", inherits: true);
public string SharedSizeGroup
{
get { return this.GetValue(SharedSizeGroupProperty); }
set { this.SetValue(SharedSizeGroupProperty, value); }
}
}
}