DocumentMetaのモデル作成WIP

This commit is contained in:
r-ca 2023-12-14 04:17:13 +09:00
parent 250101c00a
commit d4f1d76763
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -0,0 +1,14 @@
package one.nem.lacerta.model.document;
import java.util.Date;
public class DocumentMeta {
String id;
String title;
Date updatedAt;
String author;
String defaultBranch;
// TODO-rca: Getter, Setter
}