namespace Guru { using System; /// /// 运控配置接口类 /// public interface IRemoteConfig where T : IRemoteConfig { bool enable { get; set; } Action OnValueChanged { get; set; } string ToJson(); } }