Files
m365-workingwith/app/models.py
2026-02-02 12:40:51 +01:00

17 lines
281 B
Python

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