no message

This commit is contained in:
2025-02-20 00:39:59 +03:00
parent 4e3597ba7a
commit f1440dd1e2
13 changed files with 56 additions and 105 deletions

View File

@@ -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;
}
}