mirror of
https://github.com/Hommy-master/capcut-mate.git
synced 2026-08-28 23:27:50 +08:00
7 lines
166 B
Python
7 lines
166 B
Python
from pydantic import BaseModel, Field
|
|
from typing import Optional, List, Dict, Any
|
|
|
|
|
|
class CreateDraftRequest(BaseModel):
|
|
width: int = 1080
|
|
height: int = 1920 |