10 lines
169 B
Python
10 lines
169 B
Python
from pydantic import BaseModel
|
|
from typing import Optional
|
|
|
|
|
|
class Group(BaseModel):
|
|
name: str
|
|
bio: str
|
|
livestream_id: str = ""
|
|
id: Optional[int] = None
|