Browse Source
Want to add computed/readonly values in the near future which will not use PriorityValue.pull/58/head
10 changed files with 53 additions and 82 deletions
@ -1,17 +0,0 @@ |
|||
// -----------------------------------------------------------------------
|
|||
// <copyright file="IPerspexPropertyBinding.cs" company="Steven Kirk">
|
|||
// Copyright 2015 MIT Licence. See licence.md for more information.
|
|||
// </copyright>
|
|||
// -----------------------------------------------------------------------
|
|||
|
|||
namespace Perspex.Diagnostics |
|||
{ |
|||
public interface IPerspexPropertyBinding |
|||
{ |
|||
string Description { get; } |
|||
|
|||
int Priority { get; } |
|||
|
|||
object Value { get; } |
|||
} |
|||
} |
|||
@ -1,17 +0,0 @@ |
|||
// -----------------------------------------------------------------------
|
|||
// <copyright file="PerspexPropertyBinding.cs" company="Steven Kirk">
|
|||
// Copyright 2015 MIT Licence. See licence.md for more information.
|
|||
// </copyright>
|
|||
// -----------------------------------------------------------------------
|
|||
|
|||
namespace Perspex.Diagnostics |
|||
{ |
|||
internal class PerspexPropertyBinding : IPerspexPropertyBinding |
|||
{ |
|||
public string Description { get; set; } |
|||
|
|||
public int Priority { get; set; } |
|||
|
|||
public object Value { get; set; } |
|||
} |
|||
} |
|||
Loading…
Reference in new issue