namespace SHARP_CLAS_UI { public class Parameter_Mode { public bool Agv_Skip { get; set; } public bool LD_Bcr_Skip { get; set; } public bool Cell_Id_Bcr_Skip { get; set; } public bool Uld_Bcr_Skip { get; set; } public bool Film_Judge_Skip { get; set; } public bool Pre_Align_Skip { get; set; } public bool Fine_Align_Skip { get; set; } public bool Measurement_Skip { get; set; } public bool Ablation_Skip { get; set; } public bool Plasma_Skip { get; set; } public bool Width_Measurement_Skip { get; set; } public bool LD_Stacker_Skip { get; set; } public bool ULD_Stacker_Skip { get; set; } public bool Film_Judge_Mode { get; set; } public bool Ablation_Stage_1_1_Skip { get; set; } public bool Ablation_Stage_1_2_Skip { get; set; } public bool Ablation_Stage_2_1_Skip { get; set; } public bool Ablation_Stage_2_2_Skip { get; set; } public bool Auto_Power_Skip { get; set; } public Parameter_Mode() { Agv_Skip = false; LD_Bcr_Skip = false; Cell_Id_Bcr_Skip = false; Uld_Bcr_Skip = false; Film_Judge_Skip = false; Pre_Align_Skip = false; Fine_Align_Skip = false; Measurement_Skip = false; Width_Measurement_Skip = false; Ablation_Skip = false; Plasma_Skip = false; LD_Stacker_Skip = false; ULD_Stacker_Skip = false; Film_Judge_Mode = false; Ablation_Stage_1_1_Skip = false; Ablation_Stage_1_2_Skip = false; Ablation_Stage_2_1_Skip = false; Ablation_Stage_2_2_Skip = false; Auto_Power_Skip = false; } public Parameter_Mode Clone() { Parameter_Mode mode = new Parameter_Mode(); mode.Agv_Skip = this.Agv_Skip; mode.LD_Bcr_Skip = this.LD_Bcr_Skip; mode.Cell_Id_Bcr_Skip = this.Cell_Id_Bcr_Skip; mode.Uld_Bcr_Skip = this.Uld_Bcr_Skip; mode.Film_Judge_Skip = this.Film_Judge_Skip; mode.Pre_Align_Skip = this.Pre_Align_Skip; mode.Fine_Align_Skip = this.Fine_Align_Skip; mode.Measurement_Skip = this.Measurement_Skip; mode.Width_Measurement_Skip = this.Width_Measurement_Skip; mode.Ablation_Skip = this.Ablation_Skip; mode.Plasma_Skip = this.Plasma_Skip; mode.LD_Stacker_Skip = this.LD_Stacker_Skip; mode.ULD_Stacker_Skip = this.ULD_Stacker_Skip; mode.Film_Judge_Mode = this.Film_Judge_Mode; mode.Ablation_Stage_1_1_Skip = this.Ablation_Stage_1_1_Skip; mode.Ablation_Stage_1_2_Skip = this.Ablation_Stage_1_2_Skip; mode.Ablation_Stage_2_1_Skip = this.Ablation_Stage_2_1_Skip; mode.Ablation_Stage_2_2_Skip = this.Ablation_Stage_2_2_Skip; mode.Auto_Power_Skip = this.Auto_Power_Skip; return mode; } } }