d9a22655b8
Remove network card monitor
19 lines
539 B
C#
19 lines
539 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; }
|
|
}
|
|
} |