yavsc/GoogleCode/GoogleTranslate/Objects/LanguageDetection/LanguageDetectionData.cs

9 lines
214 B
C#
Raw Normal View History

2018-12-11 09:15:16 +00:00
using System.Collections.Generic;
namespace GoogleTranslateNET.Objects.LanguageDetection
{
public class LanguageDetectionData
{
public List<List<LanguageDetection>> Detections { get; set; }
}
}