using Furion.ConfigurableOptions; namespace SafeCampus.Plugin.Core { /// /// 插件配置选项 /// public class PluginSettingsOptions : IConfigurableOptions { /// /// 是否开启SignalR /// public bool UseSignalR { get; set; } = true; /// /// 是否开启Mqtt /// public bool UseMqtt { get; set; } = false; /// /// 默认通知类型 /// SignalR/Mqtt /// public NoticeComponent NoticeComponent { get; set; } = NoticeComponent.Signalr; } }