mirror of
https://github.com/cyanfish/naps2.git
synced 2024-11-11 02:45:19 +03:00
17 lines
275 B
C#
17 lines
275 B
C#
namespace NAPS2.Ocr;
|
|
|
|
public class Language
|
|
{
|
|
public Language(string code, string name, bool rtl)
|
|
{
|
|
Name = name;
|
|
Code = code;
|
|
RTL = rtl;
|
|
}
|
|
|
|
public string Code { get; }
|
|
|
|
public string Name { get; }
|
|
|
|
public bool RTL { get; }
|
|
} |