19 lines
327 B
Python
19 lines
327 B
Python
from pydantic import BaseModel
|
|
|
|
|
|
class DocumentSpecs(BaseModel):
|
|
format: str
|
|
style: str
|
|
linkcolor: str
|
|
tocdepth: int
|
|
pdfengine: str
|
|
content: str
|
|
fontsize: int
|
|
paperwidth: int
|
|
paperheight: int
|
|
ratio: int
|
|
margin: int
|
|
vmargin: int
|
|
extension: str
|
|
fps: int
|
|
stilltime: int
|