arch-design-agent-skill-das.../backend/app/modules/project/domain/entities.py
openclaw a4b7e1ca7a feat(project): add Project entity and ProjectRepository interface
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-23 16:03:03 +00:00

12 lines
188 B
Python

from dataclasses import dataclass
from datetime import datetime
@dataclass
class Project:
id: str
name: str
design_dir: str
code_dir: str | None
created_at: datetime