Webiant Logo Webiant Logo
  1. No results found.

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

ToneOfVoiceType.cs

namespace Nop.Core.Domain.ArtificialIntelligence;

/// <summary>
/// Represents the tone of voice enumeration
/// </summary>
public enum ToneOfVoiceType
{
    /// <summary>
    /// Expert tone of voice
    /// </summary>
    Expert,
    /// <summary>
    /// Supportive tone of voice
    /// </summary>
    Supportive,
    /// <summary>
    /// Custom tone of voice
    /// </summary>
    Custom
}