17 lines
471 B
C#
17 lines
471 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 AuctionStatus AuctionStatus { get; set; }
|
|
|
|
public int StartingPrice { get; set; }
|
|
public int BidPrice { get; set; }
|
|
|
|
public int BidAmount { get; set; }
|
|
} |