mirror of
https://github.com/ltcptgeneral/cs239-caching.git
synced 2025-04-01 12:33:25 +00:00
9 lines
220 B
Python
9 lines
220 B
Python
from pydantic import BaseModel
|
|
|
|
class User(BaseModel):
|
|
user_id: str
|
|
name: str | None = None
|
|
followers: int | None = None
|
|
bio: str | None = None
|
|
posts: str | None = None
|
|
friends: list | None = None |