Esempio n. 1
0
 public MobileMsgDTO(string msgId,
                     Guid appId,
                     List <Guid> toUsers,
                     string msgContent,
                     MobileMsgSecondTypeEnum secondType,
                     MobileMsgCodeEnum contentCode)
     : this(msgId, appId, toUsers, msgContent, secondType, contentCode, MobileMsgType.BUSI_MSG)
 {
 }
Esempio n. 2
0
 public MobileMsgDTO(string msgId,
                     Guid appId,
                     List <Guid> toUsers,
                     string msgContent,
                     MobileMsgSecondTypeEnum secondType,
                     MobileMsgCodeEnum contentCode,
                     MobileMsgType mobileMsgType)
 {
     MsgId         = msgId;
     AppId         = appId;
     ToUsers       = toUsers;
     MsgContent    = msgContent;
     SecondType    = secondType;
     ContentCode   = contentCode;
     MobileMsgType = mobileMsgType;
 }