10 lines
179 B
Python
10 lines
179 B
Python
from typing import Optional
|
|
|
|
from pydantic import BaseModel
|
|
|
|
|
|
class AppClientInfo(BaseModel):
|
|
"""Information about a third party app client."""
|
|
|
|
url: Optional[str] = None
|