package com.mugua.mgvideo.entity;
|
|
import com.google.gson.annotations.Expose;
|
|
public class NewsCategory {
|
|
@Expose
|
String name;
|
@Expose
|
String icon;
|
public String getName() {
|
return name;
|
}
|
public void setName(String name) {
|
this.name = name;
|
}
|
public String getIcon() {
|
return icon;
|
}
|
public void setIcon(String icon) {
|
this.icon = icon;
|
}
|
|
}
|