Skip to content

Commit

Permalink
solved compilation issues (Windows)
Browse files Browse the repository at this point in the history
  • Loading branch information
genemars committed Mar 17, 2019
1 parent 5a1bbde commit f28336b
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions HomeGenie/Data/SystemConfiguration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -114,13 +114,20 @@ public class HomeGenieConfiguration
{
public string GUID { get; set; }
public string SystemName { get; set; }
public string Username { get; set; } = "admin";
public string Password { get; set; } = "";
public string Username { get; set; }
public string Password { get; set; }
public string Location { get; set; }

public List<ModuleParameter> Settings = new List<ModuleParameter>();
public StatisticsConfiguration Statistics = new StatisticsConfiguration();

public HomeGenieConfiguration()
{
// default values
Username = "admin";
Password = "";
}

public string EnableLogFile { get; set; }

[Serializable()]
Expand Down

0 comments on commit f28336b

Please sign in to comment.