24 lines
535 B
C#
24 lines
535 B
C#
using Nop.Plugin.Misc.AuctionPlugin.Domains.Dtos;
|
|
using Nop.Web.Framework.Models;
|
|
using Nop.Web.Framework.Mvc.ModelBinding;
|
|
using Nop.Web.Models.Catalog;
|
|
|
|
namespace Nop.Plugin.Misc.AuctionPlugin.Models
|
|
{
|
|
public record LiveScreenViewModel : BaseNopModel
|
|
{
|
|
|
|
public int ProductId { get; set; }
|
|
|
|
public DateTime StartDate { get; set; }
|
|
|
|
public bool IsActive { get; set; }
|
|
|
|
public AuctionDto CurrentAuction { get; set; }
|
|
|
|
public ProductDetailsModel ProductDetails { get; set; }
|
|
|
|
|
|
}
|
|
}
|