10 lines
138 B
Python
10 lines
138 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class Character(BaseModel):
|
|
id: str
|
|
name: str
|
|
character_image: bytes
|
|
character_bio: str
|
|
|