mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-07-12 13:29:04 +00:00
18 lines
529 B
Python
18 lines
529 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:
|
|
# Placeholder copy — final wording is owned by Abri's schedulers (issue #1455).
|
|
return JobDescriptions(
|
|
short_description=f"Domna condition survey - {deal_name}",
|
|
long_description=(
|
|
f"Domna condition survey visit at {deal_name}, "
|
|
"booked by Domna operations."
|
|
),
|
|
)
|