using Mango.Nop.Core.Interfaces; namespace Nop.Plugin.Misc.AuctionPlugin.Domains.Dtos.Interfaces; public interface IAuctionBidDtoBase : IMgModelDtoBase { public int ProductAuctionMappingId { get; set; } public int CustomerId { get; set; } public int ProductId { get; set; } public bool IsWinner { get; set; } public decimal BidPrice { get; set; } }