using athosRT.Devices.EFEM.ABS; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace athosRT.Devices.EFEM.Task { public class QueryModeTask : CheckImp, ITask { public bool Execute(out string result, params string[] args) => this.Check("System", out result); public bool? Monitor(out string result, params string[] args) { result = "AUTO"; return new bool?(true); } } }