7 lines
103 B
Python
7 lines
103 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class TeamLogoEntity(BaseModel):
|
|
filename: str
|
|
file_path: str
|