Flow.Launcher/Flow.Launcher.Core/Resource/Language.cs

19 lines
389 B
C#
Raw Permalink Normal View History

2020-04-21 09:12:17 +00:00
namespace Flow.Launcher.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; }
}
}