Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

TranslationServiceType.cs

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
}