/*
|
* 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.reporting.adhoc.dto;
|
|
/**
|
*
|
* @author ASUS
|
*/
|
public class PrintableColumn {
|
|
private String libelle;
|
|
private String description;
|
|
public String getLibelle() {
|
return libelle;
|
}
|
|
public void setLibelle(String libelle) {
|
this.libelle = libelle;
|
}
|
|
public String getDescription() {
|
return description;
|
}
|
|
public void setDescription(String description) {
|
this.description = description;
|
}
|
|
}
|