struct
This commit is contained in:
parent
7281477269
commit
8cefa60d3a
6 changed files with 33 additions and 1 deletions
12
items/models.py
Normal file
12
items/models.py
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
from datetime import datetime, timedelta, timezone
|
||||
from ..auth.models import UserInDb
|
||||
|
||||
class UserProfile(UserInDb):
|
||||
bio : str | None = None
|
||||
created_date : datetime | None = None
|
||||
collections : list[str] | None = None
|
||||
items :list[str] | None = None
|
||||
|
||||
|
||||
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue