mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 19:49:15 +08:00
24 lines
462 B
C#
24 lines
462 B
C#
|
using System;
|
|||
|
using System.Collections.Generic;
|
|||
|
using System.Linq;
|
|||
|
using System.Text;
|
|||
|
|
|||
|
namespace Wox.Core.i18n
|
|||
|
{
|
|||
|
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; }
|
|||
|
}
|
|||
|
}
|