UnRecommendModel.java 664 Bytes
package com.cnlive.goldenline.model;

import android.support.v4.app.Fragment;

import java.io.Serializable;

/**
 * Created by Administrator on 2016/5/26.
 */
public class UnRecommendModel implements Serializable {
    String tag;
    Fragment fragment;

    public UnRecommendModel(String tag, Fragment fragment) {
        this.tag = tag;
        this.fragment = fragment;
    }

    public String getTag() {
        return tag;
    }

    public void setTag(String tag) {
        this.tag = tag;
    }

    public Fragment getFragment() {
        return fragment;
    }

    public void setFragment(Fragment fragment) {
        this.fragment = fragment;
    }
}