Blame |
Last modification |
View Log
| Download
| RSS feed
package br.gov.al.saude.scs.model.dto;
import java.io.Serializable;
public class InteressadoIntegraDTO
implements Serializable{
private static final long serialVersionUID = 1L
;
private String nome
;
private String numeroDocumento
;
public InteressadoIntegraDTO
() {}
public InteressadoIntegraDTO
(String nome,
String numeroDocumento
) {
super();
this.
nome = nome
;
this.
numeroDocumento = numeroDocumento
;
}
public String getNome
() {
return nome
;
}
public void setNome
(String nome
) {
this.
nome = nome
;
}
public String getNumeroDocumento
() {
return numeroDocumento
;
}
public void setNumeroDocumento
(String numeroDocumento
) {
this.
numeroDocumento = numeroDocumento
;
}
}