+ Added language to client config

Refactor
This commit is contained in:
Lucio Maranta
2018-01-17 15:21:49 +01:00
parent 9556a4521f
commit 57613280e2
9 changed files with 56 additions and 18 deletions
+2 -1
View File
@@ -1,5 +1,6 @@
using System;
using System.Collections.Generic;
using System.Globalization;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
@@ -8,7 +9,7 @@ namespace Step.Model.ConfigModels
{
public class ServerConfigModel
{
public string Language { get; set; }
public CultureInfo Language { get; set; }
public int ServerPort { get; set; }
public bool EnableDirectoryBrowsing { get; set; }
}