RobotCase.cs 247 B

1234567891011
  1. using System.Collections.Generic;
  2. namespace ET.Server
  3. {
  4. [ChildOf(typeof(RobotCaseComponent))]
  5. public class RobotCase: Entity, IAwake
  6. {
  7. public ETCancellationToken CancellationToken;
  8. public string CommandLine;
  9. }
  10. }