using AyCode.Interfaces.Entities; using AyCode.Interfaces.TimeStampInfo; using Nop.Core; using Nop.Plugin.Misc.AuctionPlugin.Domains.Enums; namespace Nop.Plugin.Misc.AuctionPlugin.Domains.Entities; public class Auction: BaseEntity, IEntityInt, ITimeStampInfo { public string AuctionName { get; set; } public AuctionType AuctionType{ get; set; } public DateTime StartDateUtc { get; set; } public DateTime? EndDateUtc { get; set; } public bool Closed { get; set; } public DateTime Created { get; set; } public DateTime Modified { get; set; } }