no message
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
package _VisualDVM.ComponentsServer.Recipient.Json;
|
||||
import com.google.gson.annotations.Expose;
|
||||
public class UserAccountJson {
|
||||
@Expose
|
||||
public String email;
|
||||
@Expose
|
||||
public String name;
|
||||
public UserAccountJson(String email_in, String name_in){
|
||||
email = email_in;
|
||||
name = name_in;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user