23 lines
661 B
C#
23 lines
661 B
C#
using Mango.Nop.Core.Interfaces;
|
|
using Nop.Plugin.Misc.AuctionPlugin.Domains.Enums;
|
|
|
|
namespace Nop.Plugin.Misc.AuctionPlugin.Domains.Dtos.Interfaces;
|
|
|
|
public interface IProductToAuctionDtoBase : IMgModelDtoBase
|
|
{
|
|
public int ProductId { get; set; }
|
|
public int AuctionId { get; set; }
|
|
|
|
public int WinnerCustomerId { get; set; }
|
|
|
|
public AuctionStatus AuctionStatus { get; set; }
|
|
|
|
public decimal StartingPrice { get; set; }
|
|
public decimal CurrentPrice { get; set; }
|
|
|
|
public int ProductAmount { get; set; }
|
|
|
|
public int SortIndex { get; set; }
|
|
public int? BiddingNumber { get; set; }
|
|
public int BidsCount { get; set; }
|
|
} |