Searching system

This commit is contained in:
2025-06-08 14:21:09 +03:30
parent 7a7141866e
commit fe6d565fd6
5 changed files with 140 additions and 134 deletions
@@ -0,0 +1,19 @@
package org.to.telegramfinalproject.Models;
public class SearchRequestModel {
private String action;
private String keyword;
public SearchRequestModel(String action, String keyword) {
this.action = action;
this.keyword = keyword;
}
public String getAction() {
return action;
}
public String getKeyword() {
return keyword;
}
}