FullVideoShareItemData.java 1.03 KB
package com.cnlive.share.data;

public class FullVideoShareItemData {

    public static final int TYPE_WEIXIN = 0X1001;
    public static final int TYPE_PENG_YOU_QUAN = 0X1002;
    public static final int TYPE_WJJ = 0X1003;
    public static final int TYPE_WJJ_QUAN = 0X1004;
    public static final int TYPE_QQ = 0X1005;
    public static final int TYPE_BROWSER = 0X1006;
    public static final int TYPE_WEIBO = 0X1007;

    private int iconId;
    private String title;
    private int type;

    public FullVideoShareItemData(int iconId, String title, int type) {
        this.iconId = iconId;
        this.title = title;
        this.type = type;
    }

    public int getIconId() {
        return iconId;
    }

    public void setIconId(int iconId) {
        this.iconId = iconId;
    }

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }

    public int getType() {
        return type;
    }

    public void setType(int type) {
        this.type = type;
    }
}