source: WIP, Tagエンティティ実装

This commit is contained in:
r-ca 2023-12-14 02:30:12 +09:00
parent e108cd7834
commit 7124d089a7
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -1,4 +1,15 @@
package one.nem.lacerta.source.database.entity;
import androidx.room.Entity;
import androidx.room.PrimaryKey;
@Entity(tableName = "tag")
public class Tag {
@PrimaryKey
public String id; // タグID
public String name; // タグ名
public String color; // タグの色
}