9 lines
214 B
C#
9 lines
214 B
C#
using System.Collections.Generic;
|
|
|
|
namespace GoogleTranslateNET.Objects.LanguageDetection
|
|
{
|
|
public class LanguageDetectionData
|
|
{
|
|
public List<List<LanguageDetection>> Detections { get; set; }
|
|
}
|
|
} |