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