28 lines
592 B
C#
28 lines
592 B
C#
|
|
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
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// 业务模块的接口
|
|||
|
|
/// </summary>
|
|||
|
|
[SecurityCritical]
|
|||
|
|
public interface IBusinessModule
|
|||
|
|
{
|
|||
|
|
void Init(IModuleContainer container);
|
|||
|
|
|
|||
|
|
Path ICON { get; }
|
|||
|
|
string ModuleTitle { get; }
|
|||
|
|
string ModuleRemark { get; }
|
|||
|
|
UIElement ModuleMainview { get; }
|
|||
|
|
|
|||
|
|
Thickness IconMargin { get; }
|
|||
|
|
}
|
|||
|
|
}
|