blob: 26496c4483441f1c7d253bf8390c4c9d6584097c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
from typing import NamedTuple
from datetime import datetime
class Task(NamedTuple):
id: int
created_at: int
modified_at: int
name: str
tag: str
class TaskForm(NamedTuple):
name: str
tag: str
|