export type StatutCommande = "EN_ATTENTE" | "VALIDEE" | "EN_PRODUCTION" | "LIVREE" | "ANNULEE";
export type ModePaiement = "MOBILE_MONEY" | "CARTE" | "VIREMENT";

export interface Commande {
  uid: string;
  reference: string;
  statut: StatutCommande;
  quantite: number;
  montantTotal: number;
  modePaiement: ModePaiement;
  noteClient: string | null;
  produit: {
    id: number;
    nom: string;
    format: string;
    imageUrl: string | null;
  };
  createdAt: string;
}
