Todo work

This commit is contained in:
Julien Valverdé
2024-06-27 19:05:46 +02:00
parent f0065e1527
commit 53757b029d
2 changed files with 3 additions and 0 deletions

View File

@@ -12,6 +12,8 @@ export class Todo extends Class<Todo>("Todo")({
content: S.String,
due: S.OptionFromSelf(S.DateFromSelf),
completed: S.Boolean,
createdAt: S.DateFromSelf,
updatedAt: S.DateFromSelf,
}) {}