Try your search with a different keyword or use * as a wildcard.
namespace Nop.Core.Domain.Translation;
/// <summary>
/// Represents a translation service type
/// </summary>
public enum TranslationServiceType
{
/// <summary>
/// Google cloud translate API
/// </summary>
GoogleTranslate,
/// <summary>
/// DeepL API
/// </summary>
DeepL
}