| 123456789101112131415161718192021 |
- using System;
- using System.Collections;
- namespace Core.Mes.ServerFrameWork
- {
- /// <summary>
- /// 服务端组件和子服务的基础接口
- /// </summary>
- public interface IServerBase : IDisposable
- {
- /// <summary>
- /// 访问数据库组件
- /// </summary>
- Hashtable DBManagerList{set; get;}
- /// <summary>
- /// 类的描述信息
- /// </summary>
- string Description{get;}
- }
- }
|