source: WIP, Documentエンティティ作成

This commit is contained in:
r-ca 2023-12-14 02:25:26 +09:00
parent 02ab3467ed
commit 7c3588275c
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -1,4 +1,20 @@
package one.nem.lacerta.source.database.entity;
import androidx.room.Entity;
import androidx.room.PrimaryKey;
@Entity(tableName = "document")
public class Document {
@PrimaryKey
public String id; // ドキュメントID
public String title; // タイトル
public String createdAt; // 作成日時
public String updatedAt; // 更新日時
public String author; // 作成者
public String defaultBranch; // デフォルトブランチ
}