25 lines
541 B
C#
25 lines
541 B
C#
using CRM.Core.Common.EventBus;
|
|
using CRM.Core.DTO.AliYunSub;
|
|
|
|
namespace CRM.Core.BLL.EventBus.Events
|
|
{
|
|
/// <summary>
|
|
/// 阿里云订阅
|
|
/// </summary>
|
|
public class SoftAliyunSubEvent : IEvent
|
|
{
|
|
public SoftAliyunSubEvent()
|
|
{
|
|
}
|
|
|
|
public SoftAliyunSubEvent(AliYunSubInfo _subinfo, string deptcode)
|
|
{
|
|
subinfo = _subinfo;
|
|
DeptCode = deptcode;
|
|
}
|
|
|
|
public AliYunSubInfo subinfo { get; set; }
|
|
public string DeptCode { get; set; }
|
|
}
|
|
}
|