// 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 //TODO: Rename to GBaseValueChanged or EntryUpdated?
{
///
/// for the event
///
/// The name of the IGBaseColumn
/// The new value
public GBaseEntryChangedEventArgs(string columnName, object value)
{
ColumnName = columnName;
Value = value;
}
///
/// The name of the IGBaseColumn
///
public string ColumnName { get; }
///
/// The new value
///
public object Value { get; }
}
}