using System;
using System.Collections.Generic;
using System.Text;
namespace SharedLibraryCore.Events
{
///
/// represents change from one value to another
///
class Change
{
///
/// represents the previous value of the item
///
public string PreviousValue { get; set; }
///
/// represents the new/current value of the item
///
public string NewValue { get; set; }
}
}