ReadMsgAllParam.java 194 Bytes
Newer Older
konghaorui committed
1 2 3 4 5 6 7 8 9 10 11 12
package com.yidianling.im.http.param;

//消息列表 全部已读
public class ReadMsgAllParam {

    public int type;

    public ReadMsgAllParam(int type) {
        this.type = type;
    }

}