Subversion Repositories eFlore/Applications.del

Rev

Rev 2067 | Blame | Compare with Previous | Last modification | View Log | RSS feed

package org.tela_botanica.del.client.modeles;

public class EvenementObs {
        
        public String type = "";
        public String infosComplementaires = "";
        
        public EvenementObs(String type, String infosComplementaires) {
                this.type = type;
                this.infosComplementaires = infosComplementaires;
        }

        public String getType() {
                return type;
        }

        public void setType(String type) {
                this.type = type;
        }

        public String getInfosComplementaires() {
                return infosComplementaires;
        }

        public void setInfosComplementaires(String infosComplementaires) {
                this.infosComplementaires = infosComplementaires;
        }
}