Subversion Repositories eFlore/Applications.del

Rev

Rev 534 | Rev 1220 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

package org.tela_botanica.del.client.modeles;

public class Protocole {

        private int id;
        private String nom;
        private String description;

        public int getId() {
                return id;
        }

        public void setId(int id) {
                this.id = id;
        }

        public String getNom() {
                return nom;
        }

        public void setNom(String nom) {
                this.nom = nom;
        }
        
        public String getDescription() {
                return description;
        }

        public void setDescription(String description) {
                this.description = description;
        }

}