Files
Personal-API/app/models/lyric_romanji_translator.py
2025-08-21 15:59:02 +07:00

15 lines
306 B
Python

from pydantic import BaseModel
from typing import List
class LyricRomanjiTranslatorRequest(BaseModel):
folder_path: str
class FileResult(BaseModel):
file: str
processed: bool
added_lines: int
class LyricRomanjiTranslatorResponse(BaseModel):
results: List[FileResult]
status: str