You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
790 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Aucma.Core.OldBoxFoam.Common
{
public class AppConfigHelper
{
private static IniHelper iniHelper = new IniHelper(System.Environment.CurrentDirectory + "/config/App.InI");
public AppConfigHelper()
{
}
public string searchItems
{
get { return iniHelper.IniReadValue("system", "searchItems"); }
set { iniHelper.IniWriteValue("system", "searchItems", value); }
}
public string queryExec
{
get { return iniHelper.IniReadValue("system", "ExecState"); }
set { iniHelper.IniWriteValue("system", "ExecState", value); }
}
}
}