17 lines
390 B
C#
17 lines
390 B
C#
using Nop.Web.Framework.Mvc.ModelBinding;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Nop.Plugin.Misc.FruitBankPlugin.Areas.Admin.Models
|
|
{
|
|
public record ConfigureModel
|
|
{
|
|
[NopResourceDisplayName("Plugins.FruitBankPlugin.Fields.ApiKey")]
|
|
public string ApiKey { get; set; }
|
|
}
|
|
}
|
|
|