using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace IStation.Server
{
internal static class ConfigHelper
{
///
/// 是否写日志
///
public static bool IsWriteLog
{
get
{
return Settings.Store.Debug.IsWriteLog;
}
}
///
/// 通道名称
///
public static string QueueName
{
get
{
return Settings.Queue.StoreQueueName;
}
}
}
}