package ex3_livraison;

public class CommandeInfo {
    private String code;
    private String etat;
    private double total;

    public CommandeInfo(String code, String etat, double total) {
        this.code = code;
        this.etat = etat;
        this.total = total;
    }

    public String getCode() {
        return code;
    }

    public String getEtat() {
        return etat;
    }

    public double getTotal() {
        return total;
    }
}
