mirror of
https://framagit.org/enfance-libre/statistiques
synced 2025-12-07 07:33:46 +00:00
6 lines
137 B
TypeScript
6 lines
137 B
TypeScript
export type Amende = Readonly<{
|
|
notionId: string;
|
|
notionIdEvenement: string;
|
|
Montant: number;
|
|
Type: "ferme" | "avec sursis";
|
|
}>;
|