Erster Checkin: Tool arbeitet
This commit is contained in:
16
app/models.py
Normal file
16
app/models.py
Normal 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
|
||||
Reference in New Issue
Block a user