mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-22 11:12:36 +01:00
25 lines
461 B
C#
25 lines
461 B
C#
namespace Nikse.SubtitleEdit.Core.Translate
|
|
{
|
|
public class TranslationPair
|
|
{
|
|
public string Name { get; set; }
|
|
public string Code { get; set; }
|
|
|
|
public TranslationPair()
|
|
{
|
|
|
|
}
|
|
|
|
public TranslationPair(string name, string code)
|
|
{
|
|
Name = name;
|
|
Code = code;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return Name;
|
|
}
|
|
}
|
|
}
|