ComplianceServer/oldcode/Core.BLL/EventBus/Events/CmsNewsEvent.cs

23 lines
444 B
C#

using CRM.Core.Common.EventBus;
using CRM.Core.Model.Entity;
namespace CRM.Core.BLL.EventBus.Events
{
public class CmsNewsEvent : IEvent
{
public CMS_News_Log log { get; set; }
public CmsNewsEvent()
{
}
public CmsNewsEvent(CMS_News_Log _log, string deptcode)
{
log = _log;
DeptCode = deptcode;
}
public string DeptCode { get; set; }
}
}