package com.hpay.hpay_mobile_api.DTO;

import lombok.Getter;
import lombok.Setter;

@Getter
@Setter
public class ParraineeDTO {
    private Long id;
    private String nom;
    private String prenoms;
    private String telephone;
    private String photoClient;

    public ParraineeDTO(Long id, String nom, String prenoms, String telephone, String photoClient) {
        this.id = id;
        this.nom = nom;
        this.prenoms = prenoms;
        this.telephone = telephone;
        this.photoClient = photoClient;
    }

    // Getters et Setters
}
