EnumEndByCondition.cs 186 B

12345678910111213141516
  1. namespace JetVirgoPM.PMs.RecipeExecutors
  2. {
  3. public enum EnumEndByCondition
  4. {
  5. ByTime,
  6. ByStable,
  7. ByPurge,
  8. ByStep,
  9. ByEndpoint,
  10. }
  11. }