Subversion Repositories eFlore/Applications.del

Rev

Rev 98 | Go to most recent revision | Blame | Last modification | View Log | RSS feed

package org.tela_botanica.del.client.modeles;

public class Protocol {
        
        private int id;
        
        private String name;

        public int getId() {
                return id;
        }

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

        public String getName() {
                return name;
        }

        public void setName(String name) {
                this.name = name;
        }

}