mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-07-22 08:48:38 +00:00
11 lines
231 B
Python
11 lines
231 B
Python
from dataclasses import dataclass
|
|
|
|
|
|
@dataclass(frozen=True)
|
|
class JobDescriptions:
|
|
short_description: str
|
|
long_description: str
|
|
|
|
|
|
def build_job_descriptions(deal_name: str) -> JobDescriptions:
|
|
raise NotImplementedError
|