// Author: Gockner, Simon // Created: 2020-03-06 // Copyright(c) 2020 SimonG. All Rights Reserved. using System; namespace GBase.Api { /// /// for the event /// public class GBaseEntryChangedEventArgs : EventArgs { public GBaseEntryChangedEventArgs(string propertyName, object value) { PropertyName = propertyName; Value = value; } public string PropertyName { get; } public object Value { get; } } }