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