コンストラクタを追加

This commit is contained in:
r-ca 2023-12-16 13:36:46 +09:00
parent bd97508a3e
commit c297fb043a
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -4,8 +4,6 @@ package one.nem.lacerta.model.document.tag;
* ドキュメントのタグ
*/
public class DocumentTag {
// TODO-rca: コンストラクタを追加する
/**
* タグのID(String)
*/
@ -21,6 +19,16 @@ public class DocumentTag {
*/
String color;
// Constructor
public DocumentTag() {
}
public DocumentTag(String id, String name, String color) {
this.id = id;
this.name = name;
this.color = color;
}
// Getter
/**