namespace DPumpHydr.WinFrmUI.WenSkin.Json.Serialization
{
///
/// Provides methods to get and set values.
///
public interface IValueProvider
{
///
/// Sets the value.
///
/// The target to set the value on.
/// The value to set on the target.
void SetValue(object target, object value);
///
/// Gets the value.
///
/// The target to get the value from.
/// The value.
object GetValue(object target);
}
}