// ----------------------------------------------------------------------- // // Copyright 2015 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex.Diagnostics { public interface IPerspexPropertyBinding { string Description { get; } int Priority { get; } object Value { get; } } }