12 lines
245 B
TypeScript
12 lines
245 B
TypeScript
export type PointVenteStatut = 'ACTIF' | 'INACTIF';
|
|
|
|
export interface PointVente {
|
|
id: string;
|
|
code: string;
|
|
nom: string;
|
|
adresse: string;
|
|
ville: string;
|
|
latitude: number;
|
|
longitude: number;
|
|
statut: PointVenteStatut;
|
|
} |