feat: mePage
This commit is contained in:
@@ -1,5 +1,18 @@
|
||||
package fr.titionfire.ffsaf.utils;
|
||||
|
||||
public enum Genre {
|
||||
H, F, NA
|
||||
H("Homme"),
|
||||
F("Femme"),
|
||||
NA("Non définie");
|
||||
|
||||
public final String str;
|
||||
|
||||
Genre(String name) {
|
||||
this.str = name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return str;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user