25 lines
662 B
C#
25 lines
662 B
C#
using AyCode.Interfaces.Entities;
|
|
using AyCode.Interfaces.TimeStampInfo;
|
|
using Mango.Nop.Core.Entities;
|
|
using Nop.Core;
|
|
|
|
namespace Nop.Plugin.Misc.AuctionPlugin.Domains.Entities
|
|
{
|
|
public class AuctionBid : EntityBase, ITimeStampInfo//, ISoftRemoveEntityInt
|
|
{
|
|
public int ProductAuctionMappingId { get; set; }
|
|
|
|
public int CustomerId { get; set; }
|
|
|
|
public int ProductId { get; set; }
|
|
|
|
public bool IsWinner { get; set; }
|
|
public int BidPrice { get; set; }
|
|
|
|
public DateTime CreateDate { get; set; }
|
|
|
|
public DateTime Created { get; set; }
|
|
public DateTime Modified { get; set; }
|
|
}
|
|
|
|
} |