21 lines
417 B
C#
21 lines
417 B
C#
using AyCode.Interfaces.Entities;
|
|
using AyCode.Interfaces.TimeStampInfo;
|
|
using Nop.Core;
|
|
|
|
namespace Nop.Plugin.Misc.AuctionPlugin.Domains.Entities
|
|
{
|
|
|
|
public class Announcement : BaseEntity, IEntityInt, ITimeStampCreated
|
|
{
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string Body { get; set; }
|
|
|
|
public bool IsActive { get; set; }
|
|
|
|
public DateTime Created { get; set; }
|
|
|
|
}
|
|
|
|
} |