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

This commit is contained in:
r-ca 2023-12-14 02:28:32 +09:00
parent 984b82d4a1
commit 8d86197270
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 = "library")
public class Library {
@PrimaryKey
public String id; // ドキュメントID
public String rootPath; // rootのパス
public String path; // パス
}