namespace MRBot.PassiveTasks; internal enum TaskType { Follow } internal interface IPassiveTask { TaskType Type { get; } public void Execute(); }