Erster Checkin: Tool arbeitet

This commit is contained in:
2026-02-02 12:40:51 +01:00
parent 69fcca1fd0
commit 12926c7e83
12 changed files with 616 additions and 0 deletions

16
app/models.py Normal file
View File

@@ -0,0 +1,16 @@
from dataclasses import dataclass
from typing import Optional
@dataclass
class Person:
email: str
display_name: Optional[str]
job_title: Optional[str]
department: Optional[str]
@dataclass
class WorkingWithRelation:
source: Person
destination: Person