namespace DPumpHydr.WinFrmUI.WenSkin.Json
{
///
/// Specifies how object creation is handled by the .
///
public enum ObjectCreationHandling
{
///
/// Reuse existing objects, create new objects when needed.
///
Auto,
///
/// Only reuse existing objects.
///
Reuse,
///
/// Always create new objects.
///
Replace
}
}