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