Files
RhythmicWallpaper/IpcLibrary/Services/ServiceInfo.cs

14 lines
422 B
C#

using System.Reflection;
namespace IpcLibrary.Services {
/// <summary>
/// 服务信息
/// </summary>
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<string, MethodInfo> Methods { get; set; }
}
}