-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
jingooo5
committed
Nov 2, 2024
1 parent
0cc5aa2
commit 35de707
Showing
2 changed files
with
32 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,14 @@ | ||
from pydantic import BaseModel | ||
|
||
class User(BaseModel): | ||
user_id : int | ||
class UserBase(BaseModel): | ||
name : str | ||
password : str | ||
|
||
class UserRead(User): | ||
class UserRead(UserBase): | ||
user_id : str | ||
|
||
class UserCreate(UserBase): | ||
pass | ||
|
||
class UserCreate(User): | ||
class LoginUser(UserBase): | ||
pass |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters