/*
 * To change this license header, choose License Headers in Project Properties.
 * To change this template file, choose Tools | Templates
 * and open the template in the editor.
 */
package br.com.elotech.websaude.integracao.cnes.backend.model;

import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlRootElement;

/**
 *
 * @author elotech
 */
@XmlRootElement(name="DADOS_GESTAO")
public class Gestao implements java.io.Serializable {
    @XmlAttribute(name="COD_PROG")
    public String codProg;
    @XmlAttribute(name="IND_ESTMUN")
    public String indEstmun;
    @XmlAttribute(name="USUARIO")
    public String usuario;

    @Override
    public String toString() {
        return "\n\tGestao{\n\t\t" + "codProg=" + codProg + ", indEstmun=" + indEstmun + ", usuario=" + usuario + "\n\t}";
    }
    
    
}
