using CRM.Core.Common.EventBus; using CRM.Core.DTO.AliYunSub; namespace CRM.Core.BLL.EventBus.Events { /// /// 阿里云订阅 /// 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; } } }