26 lines
842 B
C#
26 lines
842 B
C#
using System.Globalization;
|
|
|
|
namespace Thermo.Active.Model.ConfigModels
|
|
{
|
|
public class ServerConfigModel
|
|
{
|
|
public CultureInfo Language { get; set; }
|
|
public int ServerPort { get; set; }
|
|
public string ServerAddress { get; set; }
|
|
public bool EnableDirectoryBrowsing { get; set; }
|
|
public string DatabaseAddress { get; set; }
|
|
public bool AutoOpenCmsClient { get; set; }
|
|
public string TextEditorPath { get; set; }
|
|
|
|
public string MTCFolderPath { get; set; }
|
|
public string MTCApplicationName { get; set; }
|
|
public bool CmsConnectReady { get; set; }
|
|
|
|
public int MaxAlarmsRows { get; set; }
|
|
public int AlarmToDelete { get; set; }
|
|
|
|
|
|
public int MaxSheetHistoryRows { get; set; }
|
|
public int SheetHistoryToDelete { get; set; }
|
|
}
|
|
} |