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.
22 lines
388 B
22 lines
388 B
package org.example.models;
|
|
|
|
public class LikeRequest {
|
|
String username;
|
|
Long postId;
|
|
|
|
public String getUsername() {
|
|
return username;
|
|
}
|
|
|
|
public void setUsername(String username) {
|
|
this.username = username;
|
|
}
|
|
|
|
public Long getPostId() {
|
|
return postId;
|
|
}
|
|
|
|
public void setPostId(Long postId) {
|
|
this.postId = postId;
|
|
}
|
|
}
|
|
|