using System.Reflection;
namespace IpcLibrary.Services {
///
/// 服务信息
///
public class ServiceInfo {
public string ServiceName { get; set; }
public object ServiceInstance { get; set; }
public Type ServiceType { get; set; }
public DateTime RegisterTime { get; set; }
public Dictionary Methods { get; set; }
}
}