using System; using System.Collections.Generic; using System.Text; using Darwinbots3.CommonInterface.Modules; namespace Darwinbots3 { class ModuleIndex { private IModuleUserInterface userInterface; public IModuleUserInterface UserInterface { get { return userInterface; } internal set { userInterface = value; } } } }