33 lines
718 B
C#
33 lines
718 B
C#
using Nop.Web.Framework.Models;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Nop.Plugin.Misc.AuctionPlugin.Models
|
|
{
|
|
public record ProductBidBoxViewModel: BaseNopModel
|
|
{
|
|
public int ProductId { get; set; }
|
|
public int CustomerId { get; set; }
|
|
|
|
public string WidgetZone { get; set; }
|
|
|
|
|
|
#region debug fields to be removed
|
|
|
|
public decimal? BasePrice { get; set; }
|
|
|
|
#endregion
|
|
|
|
#region visible
|
|
public decimal LicitStep { get; set; }
|
|
public decimal? CurrentPrice { get; set; }
|
|
public decimal BidPrice { get; set; }
|
|
|
|
#endregion visible
|
|
|
|
}
|
|
}
|