package com.chad.baserecyclerviewadapterhelper.entity;
import com.chad.library.adapter.base.entity.SectionEntity;
/**
* https://github.com/CymChad/BaseRecyclerViewAdapterHelper
*/
public class MySection extends SectionEntity<Video> {
private boolean isMore;
public MySection(boolean isHeader, String header, boolean isMroe) {
super(isHeader, header);
this.isMore = isMroe;
}
public MySection(Video t) {
super(t);
}
public boolean isMore() {
return isMore;
}
public void setMore(boolean mroe) {
isMore = mroe;
}
}