Try your search with a different keyword or use * as a wildcard.
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
}