Close #42 Program Source settings GUI

This commit is contained in:
Yeechan Lu
2014-03-19 20:16:20 +08:00
parent f4e74065ec
commit 1fa4be9ebb
15 changed files with 347 additions and 12 deletions

View File

@@ -10,8 +10,13 @@ namespace Wox.Infrastructure.UserSettings
{
public string Location { get; set; }
public string Type { get; set; }
public int BounsPoints { get; set; }
public int BonusPoints { get; set; }
public bool Enabled { get; set; }
public Dictionary<string, string> Meta { get; set; }
public override string ToString()
{
return (this.Type ?? "") + ":" + this.Location ?? "";
}
}
}