|
using Nop.Core;
|
|
|
|
namespace Nop.Plugin.Misc.AuctionPlugin.Domains
|
|
{
|
|
|
|
public class AnnouncementEntity : BaseEntity
|
|
|
|
{
|
|
|
|
public string Name { get; set; }
|
|
|
|
public string Body { get; set; }
|
|
|
|
public bool IsActive { get; set; }
|
|
|
|
public DateTime CreateDate { get; set; }
|
|
|
|
}
|
|
|
|
} |