using Microsoft.Extensions.Options;
using System;
using System.Collections.Generic;
namespace SlnMesnac.Config
{
///
/// 系统配置
///
public sealed class DebugConfig
{
private static IniHelper iniHelper = new IniHelper(System.Environment.CurrentDirectory + "/config/App.InI");
private static readonly Lazy lazy = new Lazy(() => new DebugConfig());
public static DebugConfig Instance
{
get
{
return lazy.Value;
}
}
public DebugConfig()
{
}
///
/// 海康相机--IP
///
public string Scanner1IP
{
get { return iniHelper.IniReadValue("system", "Scanner1IP"); }
set { iniHelper.IniWriteValue("system", "Scanner1IP", value); }
}
}
}