aboutsummaryrefslogtreecommitdiff
path: root/ShiftOS.Objects/UserConfig.cs
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-06-19 10:18:55 -0400
committerMichael <[email protected]>2017-06-19 10:19:03 -0400
commitaf9e3401e6b2c111da172da1671090f6cb33137f (patch)
tree9c6c297455de94764fd6b074311a43564a0c1860 /ShiftOS.Objects/UserConfig.cs
parent49b31c7e847cc7aa9365880f9f92e0498f1450bd (diff)
downloadshiftos_thereturn-af9e3401e6b2c111da172da1671090f6cb33137f.tar.gz
shiftos_thereturn-af9e3401e6b2c111da172da1671090f6cb33137f.tar.bz2
shiftos_thereturn-af9e3401e6b2c111da172da1671090f6cb33137f.zip
store languages in appdata
Diffstat (limited to 'ShiftOS.Objects/UserConfig.cs')
-rw-r--r--ShiftOS.Objects/UserConfig.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/ShiftOS.Objects/UserConfig.cs b/ShiftOS.Objects/UserConfig.cs
index 61d11b8..579ce00 100644
--- a/ShiftOS.Objects/UserConfig.cs
+++ b/ShiftOS.Objects/UserConfig.cs
@@ -10,7 +10,7 @@ namespace ShiftOS.Objects
{
public class UserConfig
{
- public string UniteUrl { get; set; }
+ public string Language { get; set; }
public string DigitalSocietyAddress { get; set; }
public int DigitalSocietyPort { get; set; }
@@ -18,7 +18,7 @@ namespace ShiftOS.Objects
{
var conf = new UserConfig
{
- UniteUrl = "http://getshiftos.ml",
+ Language = "english",
DigitalSocietyAddress = "michaeltheshifter.me",
DigitalSocietyPort = 13370
};