src/Bro.Common.Model/Interface/IDeviceConfig.cs
@@ -20,7 +20,7 @@
    /// <summary>
    /// 设备初始配置
    /// </summary>
    public interface IInitialConfig
    public interface IInitialConfig : ILog
    {
        /// <summary>
        /// 设备序号 GUID
@@ -31,5 +31,14 @@
        string Name { get; set; }
        bool IsEnabled { get; set; }
        string DriverType { get; set; }
    }
    public interface ILog
    {
        string LogPath { get; set; }
        bool IsEnableLog { get; set; }
    }
}