26 lines
435 B
C#
26 lines
435 B
C#
using System.ComponentModel.DataAnnotations;
|
|
using Nop.Web.Framework.Models;
|
|
|
|
|
|
namespace Nop.Plugin.Misc.AuctionPlugin.Areas.Admin.Models;
|
|
|
|
/// <summary>
|
|
/// Represents a configuration model
|
|
/// </summary>
|
|
public record ConfigurationModel : BaseNopModel
|
|
{
|
|
#region Ctor
|
|
|
|
public ConfigurationModel()
|
|
{
|
|
Test = "";
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Properties
|
|
|
|
public string Test { get; set; }
|
|
|
|
#endregion
|
|
} |