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