/*
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
|
* Click nbfs://nbhost/SystemFileSystem/Templates/Classes/Class.java to edit this template
|
*/
|
package com.megatim.fdxconsultation.model.dto;
|
|
import lombok.AllArgsConstructor;
|
import lombok.Getter;
|
import lombok.Setter;
|
|
/**
|
*
|
* @author lenovo
|
*/
|
@Getter
|
@Setter
|
@AllArgsConstructor
|
public class ParticipantToFichierDto {
|
|
private String codeParticipant;
|
private String codeFichier;
|
|
}
|