Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Framework.Models;
using Nop.Web.Framework.Mvc.ModelBinding;
namespace Nop.Plugin.Widgets.What3words.Models;
///
/// Represents plugin configuration model
///
public record ConfigurationModel : BaseNopModel
{
[NopResourceDisplayName("Plugins.Widgets.What3words.Configuration.Fields.Enabled")]
public bool Enabled { get; set; }
}