agent and tpe save done
This commit is contained in:
12
src/app/core/interfaces/points-ventes.ts
Normal file
12
src/app/core/interfaces/points-ventes.ts
Normal 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;
|
||||
}
|
||||
Reference in New Issue
Block a user