Files
pmu-plateforme-jeux-admin-plr/src/app/core/interfaces/points-ventes.ts
2026-01-06 14:07:09 +01:00

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;
}