リポジトリを管理するエンティティを作成 WIP

This commit is contained in:
r-ca 2023-12-13 18:29:43 +09:00
parent 6983353912
commit ab4a88e4bd
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -1,4 +1,14 @@
package one.nem.lacerta.source.db.entity;
import androidx.room.Entity;
import androidx.room.PrimaryKey;
@Entity
public class Repositories {
@PrimaryKey
private String id;
private String relativePath;
}