EventPlayerItemClick.java 953 Bytes
package com.cnlive.goldenline.ui.model;

/**
 * Created by gujun on 2017/3/17.
 * 播放器列表每个item内的按钮点击事件
 */

public class EventPlayerItemClick {
    public static final int SHARE_CLICK = 0x3001;
    public static final int REWARD_CLICK = 0x3002;
    public static final int PLAY_CLICK = 0x3003;

    private int id;
    private PlayBean item;
    private int position;

    public EventPlayerItemClick(int id, PlayBean item, int position) {
        this.id = id;
        this.item = item;
        this.position = position;
    }

    public int getId() {
        return id;
    }

    public void setId(int id) {
        this.id = id;
    }

    public PlayBean getItem() {
        return item;
    }

    public void setItem(PlayBean item) {
        this.item = item;
    }

    public int getPosition() {
        return position;
    }

    public void setPosition(int position) {
        this.position = position;
    }
}