using System; namespace Artemis.Core { public class DataBindingPropertyUpdatedEvent : EventArgs { public DataBindingPropertyUpdatedEvent(T value) { Value = value; } /// /// The updated value that should be applied to the layer property /// public T Value { get; } } }