mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
TagListItem廃止
This commit is contained in:
parent
070cfda21d
commit
165d45ad40
|
@ -1,41 +0,0 @@
|
||||||
package one.nem.lacerta.setting.model;
|
|
||||||
|
|
||||||
public class TagListItem {
|
|
||||||
|
|
||||||
String tagId;
|
|
||||||
String tagName;
|
|
||||||
String tagColor;
|
|
||||||
|
|
||||||
public TagListItem(String tagId, String tagName, String tagColor) {
|
|
||||||
this.tagId = tagId;
|
|
||||||
this.tagName = tagName;
|
|
||||||
this.tagColor = tagColor;
|
|
||||||
}
|
|
||||||
|
|
||||||
public TagListItem() {
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getTagId() {
|
|
||||||
return tagId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTagId(String tagId) {
|
|
||||||
this.tagId = tagId;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getTagName() {
|
|
||||||
return tagName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTagName(String tagName) {
|
|
||||||
this.tagName = tagName;
|
|
||||||
}
|
|
||||||
|
|
||||||
public String getTagColor() {
|
|
||||||
return tagColor;
|
|
||||||
}
|
|
||||||
|
|
||||||
public void setTagColor(String tagColor) {
|
|
||||||
this.tagColor = tagColor;
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user