초기 커밋.
This commit is contained in:
27
DDUtilityApp/WORKFLOW/DATA/ViewState.cs
Normal file
27
DDUtilityApp/WORKFLOW/DATA/ViewState.cs
Normal file
@@ -0,0 +1,27 @@
|
||||
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<string, object> Dictionary { get; set; } = new Dictionary<string, object>();
|
||||
|
||||
public ViewState()
|
||||
{
|
||||
}
|
||||
|
||||
public ViewState(XmlNode node)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user