RainPoo's picture
Implement black code formatter
8543457
raw
history blame
244 Bytes
from dataclasses import dataclass
from typing import List, Dict
@dataclass
class Resume:
id: str
candidate_id: str
file_path: str
parsed_content: Dict
skills: List[str]
experience: List[Dict]
education: List[Dict]