mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 11:39:16 +08:00
19 lines
379 B
C#
19 lines
379 B
C#
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; }
|
|
}
|
|
}
|