using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; namespace Tango.SharedUI { /// /// Represents a binding property. /// public class BindingProperty { /// /// Gets or sets the dependency property. /// public DependencyProperty DependencyProperty { get; set; } /// /// Initializes a new instance of the class. /// public BindingProperty() { } /// /// Initializes a new instance of the class. /// /// The dependency property. /// The mode. public BindingProperty(DependencyProperty dp) : this() { DependencyProperty = dp; } } }