SentRequest
hacker98
plain_text
a year ago
791 B
5
Indexable
model
package com.example.chatappdemo.model;
public class SentRequest {
private String IPSent;
private String name;
private String status;
public SentRequest() {}
public SentRequest(String IPSent, String name, String status) {
this.IPSent = IPSent;
this.name = name;
this.status = status;
}
public String getIPSent() {
return IPSent;
}
public void setIPSent(String IPSent) {
this.IPSent = IPSent;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getStatus() {
return status;
}
public void setStatus(String status) {
this.status = status;
}
}
Editor is loading...
Leave a Comment