using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Xml; namespace DDUtilityApp.WORKFLOW.DATA { public class ViewState { public Dictionary Dictionary { get; set; } = new Dictionary(); public ViewState() { } public ViewState(XmlNode node) { } } }