Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Configuration;
namespace Nop.Plugin.Misc.RFQ;
/// <summary>
/// Represents plugin settings
/// </summary>
public class RfqSettings : ISettings
{
/// <summary>
/// Gets or sets a value indicating whether RFQ functionality is enabled
/// </summary>
public bool Enabled { get; set; }
}