12345678910111213141516 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- namespace LYFZ.Software.MainBusiness.DoorCityProcess.NewOrderCustomControls
- {
- public class FlowchartNode: LYFZ.Software.UI.DoorCityProcess.NewOrderCustomControls.FlowchartNode
- {
- public FlowchartNode(FlowchartNodeType nType,string text="")
- :base(nType,text)
- {
- }
- }
- }
|