using AyCode.Interfaces; using Mango.Nop.Core.Interfaces; using Nop.Plugin.Misc.AuctionPlugin.Domains.Entities; using Nop.Plugin.Misc.AuctionPlugin.Domains.Enums; namespace Nop.Plugin.Misc.AuctionPlugin.Domains.Dtos.Interfaces; public interface IAuctionDtoBase : IMgModelDtoBase { 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; } }