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