SubtitleEdit/libse/Translate/TranslationPair.cs

25 lines
461 B
C#
Raw Normal View History

2018-12-01 21:56:07 +01:00
namespace Nikse.SubtitleEdit.Core.Translate
{
public class TranslationPair
{
public string Name { get; set; }
public string Code { get; set; }
2018-12-01 21:56:07 +01:00
public TranslationPair()
{
}
public TranslationPair(string name, string code)
{
Name = name;
Code = code;
}
public override string ToString()
{
return Name;
}
}
}