1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- namespace ET.Server
- {
- [Invoke(RobotCaseType.FirstCase)]
- public class RobotCase_FirstCase: ARobotCase
- {
- protected override async ETTask Run(RobotCase robotCase)
- {
- await ETTask.CompletedTask;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- }
- }
- }
|