9 lines
192 B
C#
9 lines
192 B
C#
using System.Collections.Generic;
|
|
|
|
namespace GoogleTranslateNET.Objects.Translation
|
|
{
|
|
public class TranslationData
|
|
{
|
|
public List<Translation> Translations { get; set; }
|
|
}
|
|
} |