jimu-decompiled/sources/com/chad/library/adapter/base/entity/SectionEntity.java
2025-05-13 19:24:51 +02:00

23 lines
498 B
Java

package com.chad.library.adapter.base.entity;
import java.io.Serializable;
/* loaded from: classes.dex */
public abstract class SectionEntity<T> implements Serializable {
public String header;
public boolean isHeader;
public T t;
public SectionEntity(boolean z, String str) {
this.isHeader = z;
this.header = str;
this.t = null;
}
public SectionEntity(T t) {
this.isHeader = false;
this.header = null;
this.t = t;
}
}