using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows; using System.Security; using System.Windows.Shapes; namespace Future.Contract { /// /// 业务模块的接口 /// [SecurityCritical] public interface IBusinessModule { void Init(IModuleContainer container); Path ICON { get; } string ModuleTitle { get; } string ModuleRemark { get; } UIElement ModuleMainview { get; } Thickness IconMargin { get; } } }