Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

What3wordsSettings.cs

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