add list user and part of user page
This commit is contained in:
20
src/main/java/fr/titionfire/ffsaf/utils/Contact.java
Normal file
20
src/main/java/fr/titionfire/ffsaf/utils/Contact.java
Normal file
@@ -0,0 +1,20 @@
|
||||
package fr.titionfire.ffsaf.utils;
|
||||
|
||||
public enum Contact {
|
||||
COURRIEL("Courriel"),
|
||||
TELEPHONE("Téléphone"),
|
||||
SITE("Site web"),
|
||||
FACEBOOK("Facebook"),
|
||||
INSTAGRAM("Instagram");
|
||||
|
||||
public final String name;
|
||||
|
||||
Contact(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return name;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user