|
|
|
@ -11,13 +11,13 @@ namespace GBase.Api |
|
|
|
/// </summary> |
|
|
|
/// </summary> |
|
|
|
public class GBaseEntryChangedEventArgs : EventArgs //TODO: Rename to GBaseValueChanged or EntryUpdated? |
|
|
|
public class GBaseEntryChangedEventArgs : EventArgs //TODO: Rename to GBaseValueChanged or EntryUpdated? |
|
|
|
{ |
|
|
|
{ |
|
|
|
public GBaseEntryChangedEventArgs(string propertyName, object value) |
|
|
|
public GBaseEntryChangedEventArgs(string columnName, object value) |
|
|
|
{ |
|
|
|
{ |
|
|
|
PropertyName = propertyName; |
|
|
|
ColumnName = columnName; |
|
|
|
Value = value; |
|
|
|
Value = value; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public string PropertyName { get; } |
|
|
|
public string ColumnName { get; } |
|
|
|
public object Value { get; } |
|
|
|
public object Value { get; } |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |