Routinue.cs 220 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace Aitex.Core.RT.Routine
  6. {
  7. public enum Result
  8. {
  9. RUN,
  10. DONE,
  11. FAIL,
  12. TIMEOUT,
  13. }
  14. }