using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Server
{
internal class ConfigHelper
{
///
/// 自定义实时重置阀值
///
public static int CustomRealResetThreshold
{
get { return Settings.Job.Execution.CustomRealResetThreshold; }
}
///
/// 自定义计划重置阀值
///
public static int CustomCronResetThreshold
{
get { return Settings.Job.Execution.CustomCronResetThreshold; }
}
}
}