package com.hdl.sdk.ttl_sdk.utlis;
|
|
|
import android.graphics.drawable.Drawable;
|
|
/**
|
* Created by jlchen on 11/4/21.
|
*/
|
public class MyAppInfo {
|
private Drawable image;
|
private String appName;
|
|
public MyAppInfo(Drawable image, String appName) {
|
this.image = image;
|
this.appName = appName;
|
}
|
public MyAppInfo() {
|
|
}
|
|
public Drawable getImage() {
|
return image;
|
}
|
|
public void setImage(Drawable image) {
|
this.image = image;
|
}
|
|
public String getAppName() {
|
return appName;
|
}
|
|
public void setAppName(String appName) {
|
this.appName = appName;
|
}
|
}
|