11 lines
374 B
C#
11 lines
374 B
C#
using AyCode.Interfaces.Entities;
|
|
using AyCode.Interfaces.TimeStampInfo;
|
|
using Nop.Plugin.Misc.AuctionPlugin.Domains.Dtos.Interfaces;
|
|
|
|
namespace Nop.Plugin.Misc.AuctionPlugin.Domains.Entities.Interfaces;
|
|
|
|
public interface IAuction : IAuctionDtoBase, ITimeStampInfo //, ISoftRemoveEntityInt
|
|
{
|
|
public int StoreId { get; set; }
|
|
public int? CategoryId { get; set; }
|
|
} |