ドキュメントタイプWIP

This commit is contained in:
ろむねこ 2023-12-11 10:00:36 +09:00
parent 32a8d308a1
commit f1090e046d
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168

View File

@ -1,4 +1,21 @@
package one.nem.lacerta.data.model.documents;
public class DocumentType {
public enum DocumentType {
// ドキュメントの種類
// TODO: ユーザーがドキュメントの種類を追加できるようにする
// テキスト
TEXTBOOK,
// ノート
NOTEBOOK,
// ワークブック
WORKBOOK,
// レシート
RECEIPT,
// チケット
TICKET,
// メモ
MEMO,
// その他
OTHER
}