using System.Threading.Tasks; using Utils; namespace Managers { public class RobotLogicManager:Singleton,ILaunchManager { public bool Completed { get; set; } public string StepDescription { get; } public Task Init() { throw new System.NotImplementedException(); } public void Clear() { throw new System.NotImplementedException(); } } }