RecipeHead.cs 691 B

123456789101112131415161718192021
  1. namespace FurnaceRT.Equipments.PMs.RecipeExecutions
  2. {
  3. public class RecipeHead
  4. {
  5. public string ProcessPurgeCount { get; set; }
  6. public string RecipeChamberType { get; set; }
  7. public string RecipeVersion { get; set; }
  8. public string SubRecipe { get; set; }
  9. public string AlarmRecipe { get; set; }
  10. public string AbortRecipe { get; set; }
  11. public string AlarmCondition { get; set; }
  12. public string LeakCheck { get; set; }
  13. public string PressApcPID { get; set; }
  14. public string TempCorrect { get; set; }
  15. public string TempPID { get; set; }
  16. public string ProfileCondition { get; set; }
  17. }
  18. }