using AyCode.Interfaces.Entities; using AyCode.Interfaces.TimeStampInfo; using Nop.Core; namespace Nop.Plugin.Misc.AuctionPlugin.Domains.Entities { public class AuctionBid : BaseEntity, IEntityInt, ITimeStampInfo { 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; } } }