add list user and part of user page

This commit is contained in:
2024-01-22 22:52:23 +01:00
parent 21cb673d33
commit 6f590cdaf7
44 changed files with 1469 additions and 186 deletions

View 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;
}
}