TagListItem廃止

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

View File

@ -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;
}
}