14 lines
235 B
Python
14 lines
235 B
Python
|
from pydantic import BaseModel
|
||
|
|
||
|
|
||
|
class FormatParameters(BaseModel):
|
||
|
linkcolor: str
|
||
|
tocdepth: int
|
||
|
pdfengine: str
|
||
|
fontsize: int
|
||
|
paperwidth: int
|
||
|
paperheight: int
|
||
|
margin: int
|
||
|
vmargin: int
|
||
|
extension: str
|