package com.tejia.lijin.app.entity;
|
|
public class TopMenuRightPopContent {
|
private String name;
|
|
public TopMenuRightPopContent(String name, Integer drawableLeftId) {
|
this.name = name;
|
this.drawableLeftId = drawableLeftId;
|
}
|
|
public TopMenuRightPopContent() {
|
}
|
|
private Integer drawableLeftId;
|
|
public String getName() {
|
return name;
|
}
|
|
public void setName(String name) {
|
this.name = name;
|
}
|
|
public Integer getDrawableLeftId() {
|
return drawableLeftId;
|
}
|
|
public void setDrawableLeftId(Integer drawableLeftId) {
|
this.drawableLeftId = drawableLeftId;
|
}
|
|
|
}
|