13 lines
378 B
C#
13 lines
378 B
C#
using System.Collections.Generic;
|
|
|
|
namespace ModelBasic.Process
|
|
{
|
|
public static class ProcessData
|
|
{
|
|
// 记录了当前选中的时序基点下的所有工艺
|
|
public static List<string> currentSequenceList = new List<string>();
|
|
|
|
// 记录时序仿真下当前选中节点
|
|
public static string currentSequenceNode = null;
|
|
}
|
|
} |