22 lines
653 B
C#
22 lines
653 B
C#
using AyCode.Interfaces.Entities;
|
|
using AyCode.Interfaces.TimeStampInfo;
|
|
using Mango.Nop.Core.Entities;
|
|
using Mango.Nop.Core.Interfaces;
|
|
using Nop.Core;
|
|
using Nop.Plugin.Misc.AuctionPlugin.Domains.Enums;
|
|
|
|
namespace Nop.Plugin.Misc.AuctionPlugin.Domains.Entities;
|
|
|
|
public class Auction: EntityBase, ITimeStampInfo//, ISoftRemoveEntityInt
|
|
{
|
|
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; }
|
|
} |