Merge language and theme into resource folder

This commit is contained in:
bao-qian
2016-01-07 20:04:37 +00:00
parent 8504d01688
commit ec40956721
19 changed files with 26 additions and 33 deletions

View File

@@ -0,0 +1,18 @@
namespace Wox.Core.Resource
{
public class Language
{
public Language(string code, string display)
{
LanguageCode = code;
Display = display;
}
/// <summary>
/// E.g. En or Zh-CN
/// </summary>
public string LanguageCode { get; set; }
public string Display { get; set; }
}
}