Skip to content

Commit d1f7382

Browse files
authored
Merge pull request #2 from imsweb/eod-add
Added missing EODInput constants.
2 parents bcffdac + c72a988 commit d1f7382

File tree

1 file changed

+36
-0
lines changed

1 file changed

+36
-0
lines changed

TNMStagingCSharp/TNMStagingCSharp/Src/Staging/EOD/EodStagingData.cs

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,24 @@ public class EodInput
2121
public static readonly EodInput AGE_AT_DX = new EodInput("age_dx");
2222
public static readonly EodInput DISCRIMINATOR_1 = new EodInput("discriminator_1");
2323
public static readonly EodInput DISCRIMINATOR_2 = new EodInput("discriminator_2");
24+
public static readonly EodInput CLIN_T = new EodInput("clin_t");
25+
public static readonly EodInput CLIN_T_SUFFIX = new EodInput("clin_t_suffix");
26+
public static readonly EodInput CLIN_N = new EodInput("clin_n");
27+
public static readonly EodInput CLIN_N_SUFFIX = new EodInput("clin_n_suffix");
28+
public static readonly EodInput CLIN_M = new EodInput("clin_m");
29+
public static readonly EodInput CLIN_STAGE_GROUP_DIRECT = new EodInput("clin_stage_group_direct");
30+
public static readonly EodInput PATH_T = new EodInput("path_t");
31+
public static readonly EodInput PATH_T_SUFFIX = new EodInput("path_t_suffix");
32+
public static readonly EodInput PATH_N = new EodInput("path_n");
33+
public static readonly EodInput PATH_N_SUFFIX = new EodInput("path_n_suffix");
34+
public static readonly EodInput PATH_M = new EodInput("path_m");
35+
public static readonly EodInput PATH_STAGE_GROUP_DIRECT = new EodInput("path_stage_group_direct");
36+
public static readonly EodInput YPATH_T = new EodInput("ypath_t");
37+
public static readonly EodInput YPATH_T_SUFFIX = new EodInput("ypath_t_suffix");
38+
public static readonly EodInput YPATH_N = new EodInput("ypath_n");
39+
public static readonly EodInput YPATH_N_SUFFIX = new EodInput("ypath_n_suffix");
40+
public static readonly EodInput YPATH_M = new EodInput("ypath_m");
41+
public static readonly EodInput YPATH_STAGE_GROUP_DIRECT = new EodInput("ypath_stage_group_direct");
2442
public static readonly EodInput NODES_POS = new EodInput("nodes_pos");
2543
public static readonly EodInput NODES_EXAM = new EodInput("nodes_exam");
2644
public static readonly EodInput EOD_PRIMARY_TUMOR = new EodInput("eod_primary_tumor");
@@ -48,6 +66,24 @@ public static IEnumerable<EodInput> Values
4866
yield return AGE_AT_DX;
4967
yield return DISCRIMINATOR_1;
5068
yield return DISCRIMINATOR_2;
69+
yield return CLIN_T;
70+
yield return CLIN_T_SUFFIX;
71+
yield return CLIN_N;
72+
yield return CLIN_N_SUFFIX;
73+
yield return CLIN_M;
74+
yield return CLIN_STAGE_GROUP_DIRECT;
75+
yield return PATH_T;
76+
yield return PATH_T_SUFFIX;
77+
yield return PATH_N;
78+
yield return PATH_N_SUFFIX;
79+
yield return PATH_M;
80+
yield return PATH_STAGE_GROUP_DIRECT;
81+
yield return YPATH_T;
82+
yield return YPATH_T_SUFFIX;
83+
yield return YPATH_N;
84+
yield return YPATH_N_SUFFIX;
85+
yield return YPATH_M;
86+
yield return YPATH_STAGE_GROUP_DIRECT;
5187
yield return NODES_POS;
5288
yield return NODES_EXAM;
5389
yield return EOD_PRIMARY_TUMOR;

0 commit comments

Comments
 (0)