using CRM.Core.Common.EventBus; namespace CRM.Core.BLL.EventBus.Events { public class UserCenterEventEvent : IEvent { public UserCenterEventEvent() { } public UserCenterEventEvent(string resId, string appId, string appUserId, string unionId, string eventMemo, int eventId, int channel, string mobile) { ResId = resId; AppId = appId; AppUserId = appUserId; UnionId = unionId; EventMemo = eventMemo; EventId = eventId; Channel = channel; Mobile = mobile; } public string ResId { get; set; } public string AppId { get; set; } public string AppUserId { get; set; } public string UnionId { get; set; } public string EventMemo { get; set; } public int EventId { get; set; } public int Channel { get; set; } public string Mobile { get; set; } } }