mirror of
https://framagit.org/enfance-libre/statistiques
synced 2025-12-08 00:13:46 +00:00
8 lines
135 B
TypeScript
8 lines
135 B
TypeScript
|
|
import { Mission } from "./Mission";
|
||
|
|
|
||
|
|
export type Contact = {
|
||
|
|
notionId: string;
|
||
|
|
notionIdFamille: string;
|
||
|
|
Missions: Mission[];
|
||
|
|
};
|