This commit is contained in:
Dede
2025-11-25 17:07:27 +00:00
parent c13e5b1dfc
commit 7d2cc98d2c
39 changed files with 881 additions and 390 deletions

View File

@@ -0,0 +1,23 @@
package com.pmu.betengine.model;
public class AuthRequest {
private String identifiant;
private String password;
public String getIdentifiant() {
return identifiant;
}
public void setIdentifiant(String identifiant) {
this.identifiant = identifiant;
}
public String getPassword() {
return password;
}
public void setPassword(String password) {
this.password = password;
}
}