/*
 * 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.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;

/**
 *
 * @author elotech
 */
@XmlRootElement(name = "VERSAO")
public class Versao implements java.io.Serializable {

    @XmlAttribute(name="VERSAO")    
    public String versao;


    @Override
    public String toString() {
        return "\n\tVersao{\n\t\t" + "versao=" + versao + "\n\t}";
    }
    
    
}
