Login and Register with UI

This commit is contained in:
2025-06-04 22:54:24 +03:30
parent 108a6d8b81
commit 86ca58481f
21 changed files with 1166 additions and 0 deletions
@@ -0,0 +1,39 @@
package org.to.telegramfinalproject.Models;
public class RequestModel {
private String action;
private String user_id;
private String username;
private String password;
private String profile_name;
public RequestModel(String action, String user_id, String username, String password, String profile_name) {
this.action = action;
this.user_id = user_id;
this.username = username;
this.password = password;
this.profile_name = profile_name;
}
public String getAction() {
return this.action;
}
public String getUser_id() {
return this.user_id;
}
public String getUsername() {
return this.username;
}
public String getPassword() {
return this.password;
}
public String getProfile_name() {
return this.profile_name;
}
}