Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Configuration;
namespace Nop.Plugin.Widgets.What3words;
///
/// Represents plugin settings
///
public class What3wordsSettings : ISettings
{
///
/// Gets or sets the API key
///
public string ApiKey { get; set; }
///
/// Gets or sets a value indicating whether the plugin is enabled
///
public bool Enabled { get; set; }
}