package com.weikou.beibeivideo.entity.ad;
|
|
import com.bytedance.sdk.openadsdk.TTFeedAd;
|
import com.bytedance.sdk.openadsdk.TTNativeExpressAd;
|
import com.qq.e.ads.nativ.NativeExpressADView;
|
|
//信息流原生广告容器
|
public class ExpressAdContainer {
|
|
TTFeedAd csj;
|
NativeExpressADView gdt;
|
|
public ExpressAdContainer(TTFeedAd csj) {
|
this.csj = csj;
|
}
|
|
public ExpressAdContainer(NativeExpressADView gdt) {
|
this.gdt = gdt;
|
}
|
|
public TTFeedAd getCsj() {
|
return csj;
|
}
|
|
public void setCsj(TTFeedAd csj) {
|
this.csj = csj;
|
}
|
|
public NativeExpressADView getGdt() {
|
return gdt;
|
}
|
|
public void setGdt(NativeExpressADView gdt) {
|
this.gdt = gdt;
|
}
|
}
|