ReceiveRequest
hacker98
plain_text
9 months ago
857 B
2
Indexable
model
package com.example.chatappdemo.model; public class ReceiveRequest { private String IPRequest; private String name; private String publicKey; public ReceiveRequest(String IPRequest, String name, String publicKey) { this.IPRequest = IPRequest; this.name = name; this.publicKey = publicKey; } public ReceiveRequest(){} public String getIPRequest() { return IPRequest; } public void setIPRequest(String IPRequest) { this.IPRequest = IPRequest; } public String getName() { return name; } public void setName(String name) { this.name = name; } public String getPublicKey() { return publicKey; } public void setPublicKey(String publicKey) { this.publicKey = publicKey; } }
Editor is loading...
Leave a Comment