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