// ----------------------------------------------------------------------- // // Copyright 2014 MIT Licence. See licence.md for more information. // // ----------------------------------------------------------------------- namespace Perspex.Styling { public class Setter { public Setter() { } public Setter(PerspexProperty property, object value) { this.Property = property; this.Value = value; } public PerspexProperty Property { get; set; } public object Value { get; set; } } }