yavsc/GoogleCode/GoogleTranslate/Objects/Translation/Translation.cs

8 lines
203 B
C#
Raw Normal View History

2018-12-11 09:15:16 +00:00
namespace GoogleTranslateNET.Objects.Translation
{
public class Translation
{
public string TranslatedText { get; set; }
public string DetectedSourceLanguage { get; set; }
}
}