Initial commit
This commit is contained in:
@@ -0,0 +1,75 @@
|
||||
package com.baidu.license.transitions.bean;
|
||||
|
||||
import com.baidu.license.INotProguard;
|
||||
import java.io.Serializable;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class TransitionsData implements INotProguard, Serializable {
|
||||
public String big_icon;
|
||||
public String file;
|
||||
public String id;
|
||||
public String name;
|
||||
public String sign;
|
||||
public String small_icon;
|
||||
public String transition_id;
|
||||
|
||||
public String getBigicon() {
|
||||
return this.big_icon;
|
||||
}
|
||||
|
||||
public String getFile() {
|
||||
return this.file;
|
||||
}
|
||||
|
||||
public String getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
public String getSign() {
|
||||
return this.sign;
|
||||
}
|
||||
|
||||
public String getSmallicon() {
|
||||
return this.small_icon;
|
||||
}
|
||||
|
||||
public String getTransitionid() {
|
||||
return this.transition_id;
|
||||
}
|
||||
|
||||
public void setBigicon(String str) {
|
||||
this.big_icon = str;
|
||||
}
|
||||
|
||||
public void setFile(String str) {
|
||||
this.file = str;
|
||||
}
|
||||
|
||||
public void setId(String str) {
|
||||
this.id = str;
|
||||
}
|
||||
|
||||
public void setName(String str) {
|
||||
this.name = str;
|
||||
}
|
||||
|
||||
public void setSign(String str) {
|
||||
this.sign = str;
|
||||
}
|
||||
|
||||
public void setSmallicon(String str) {
|
||||
this.small_icon = str;
|
||||
}
|
||||
|
||||
public void setTransitionid(String str) {
|
||||
this.transition_id = str;
|
||||
}
|
||||
|
||||
public String toString() {
|
||||
return "TransitionsData{id='" + this.id + "', transition_id='" + this.transition_id + "', file='" + this.file + "', big_icon='" + this.big_icon + "', small_icon='" + this.small_icon + "', name='" + this.name + "', sign='" + this.sign + "'}";
|
||||
}
|
||||
}
|
@@ -0,0 +1,31 @@
|
||||
package com.baidu.license.transitions.bean;
|
||||
|
||||
import com.baidu.license.sticker.BaseModel;
|
||||
import com.baidu.license.sticker.BaseResult;
|
||||
import java.io.Serializable;
|
||||
import java.util.List;
|
||||
|
||||
/* loaded from: classes.dex */
|
||||
public class TransitionsListModel extends BaseModel implements Serializable {
|
||||
private TransitionResult result;
|
||||
|
||||
public static class TransitionResult extends BaseResult implements Serializable {
|
||||
private List<TransitionsData> transitionList;
|
||||
|
||||
public List<TransitionsData> getTransitionsDataList() {
|
||||
return this.transitionList;
|
||||
}
|
||||
|
||||
public void setTransitionsDataList(List<TransitionsData> list) {
|
||||
this.transitionList = list;
|
||||
}
|
||||
}
|
||||
|
||||
public TransitionResult getResult() {
|
||||
return this.result;
|
||||
}
|
||||
|
||||
public void setResult(TransitionResult transitionResult) {
|
||||
this.result = transitionResult;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user