This commit is contained in:
ろむねこ 2024-01-25 16:30:57 +09:00
parent 26b0994343
commit 070cfda21d
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168

View File

@ -4,13 +4,11 @@ public class TagListItem {
String tagId;
String tagName;
String tagDescription;
String tagColor;
public TagListItem(String tagId, String tagName, String tagDescription, String tagColor) {
public TagListItem(String tagId, String tagName, String tagColor) {
this.tagId = tagId;
this.tagName = tagName;
this.tagDescription = tagDescription;
this.tagColor = tagColor;
}
@ -33,14 +31,6 @@ public class TagListItem {
this.tagName = tagName;
}
public String getTagDescription() {
return tagDescription;
}
public void setTagDescription(String tagDescription) {
this.tagDescription = tagDescription;
}
public String getTagColor() {
return tagColor;
}