// Copyright (c) Microsoft Corporation. All rights reserved. // Licensed under the MIT License. using System.Collections.Generic; using Newtonsoft.Json; namespace TranslationBot.Translation.Model { /// /// Array of translated results from Translator API v3. /// internal class TranslatorResponse { [JsonProperty("translations")] public IEnumerable Translations { get; set; } } }