namespace XP.Scan.Services { /// /// 重建通知服务接口 | Reconstruction notification service interface /// 负责通过 Socket 通知本地重建软件启动重建任务 /// public interface IReconstructionNotifyService { /// /// 发送重建通知消息 /// /// 扫描配置文件路径 void SendReconstructionNotify(string configPath); } }