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; } }