using Nop.Core; namespace Nop.Plugin.Misc.AuctionPlugin.Domains { public class BidEntity : BaseEntity { public int CustomerId { get; set; } public int ProductId { get; set; } public bool IsWinner { get; set; } public int Value { get; set; } public DateTime CreateDate { get; set; } } }