agent and tpe save done

This commit is contained in:
OnlyPapy98
2026-01-06 14:07:09 +01:00
parent 95095016d2
commit 0ae7fa316e
33 changed files with 1910 additions and 525 deletions

View File

@@ -0,0 +1,12 @@
export type PointVenteStatut = 'ACTIF' | 'INACTIF';
export interface PointVente {
id: string;
code: string;
nom: string;
adresse: string;
ville: string;
latitude: number;
longitude: number;
statut: PointVenteStatut;
}