13 lines
375 B
C#
13 lines
375 B
C#
using Nop.Web.Framework.Models;
|
|
using Nop.Web.Framework.Mvc.ModelBinding;
|
|
|
|
namespace Nop.Plugin.Widgets.What3words.Models;
|
|
|
|
/// <summary>
|
|
/// Represents plugin configuration model
|
|
/// </summary>
|
|
public record ConfigurationModel : BaseNopModel
|
|
{
|
|
[NopResourceDisplayName("Plugins.Widgets.What3words.Configuration.Fields.Enabled")]
|
|
public bool Enabled { get; set; }
|
|
} |