23 lines
589 B
C#
23 lines
589 B
C#
using Nop.Plugin.Misc.AuctionPlugin.Domains.Enums;
|
|
using Nop.Web.Framework.Models;
|
|
using Nop.Web.Framework.Mvc.ModelBinding;
|
|
|
|
namespace Nop.Plugin.Misc.AuctionPlugin.Areas.Admin.Models
|
|
{
|
|
public record AuctionViewModel : BaseNopModel
|
|
{
|
|
public string PageTitle { get; set; }
|
|
|
|
[NopResourceDisplayName("Name")]
|
|
public string AuctionName { get; set; }
|
|
public AuctionType AuctionType { get; set; }
|
|
|
|
public DateTime StartDateUtc { get; set; }
|
|
public DateTime? EndDateUtc { get; set; }
|
|
|
|
public bool Closed { get; set; }
|
|
|
|
}
|
|
|
|
}
|