Blame view

src/main/java/etunicorn/Permission.java 240 Bytes
aaf8ab01   Geoffrey PREUD'HOMME   Base, à priori
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  package etunicorn;
  
  /**
   * Created by geoffrey on 28/01/17.
   */
  public class Permission {
      private String nom;
  
      public String getNom() {
          return nom;
      }
  
      public void setNom(String nom) {
          this.nom = nom;
      }
  }