Files
cms_thermo_active/Step.Model/ConfigModels/ServerConfigModel.cs
T
Lucio Maranta 7c2cb28a56 Merge remote-tracking branch 'origin/CmsConnectGateway' into develop
# Conflicts:
#	Step.Model/ConfigModels/ServerConfigModel.cs
#	Step/Controllers/WebApi/ConfigurationController.cs
2019-08-28 14:33:54 +02:00

26 lines
791 B
C#

using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Step.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 int MaxAlarmsRows { get; set; }
public int AlarmToDelete { get; set; }
}
}