You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
529 B
28 lines
529 B
9 months ago
|
package org.example.objects;
|
||
|
|
||
|
public class SearchDTO {
|
||
|
private String username;
|
||
|
private String title;
|
||
|
|
||
|
public SearchDTO(String username, String title) {
|
||
|
this.username = username;
|
||
|
this.title = title;
|
||
|
}
|
||
|
|
||
|
public String getUsername() {
|
||
|
return username;
|
||
|
}
|
||
|
|
||
|
public void setUsername(String username) {
|
||
|
this.username = username;
|
||
|
}
|
||
|
|
||
|
public String getTitle() {
|
||
|
return title;
|
||
|
}
|
||
|
|
||
|
public void setTitle(String title) {
|
||
|
this.title = title;
|
||
|
}
|
||
|
}
|