2025-02-19 22:47:56 +03:00
|
|
|
package _VisualDVM.ComponentsServer.Recipient.Json;
|
|
|
|
|
import com.google.gson.annotations.Expose;
|
2025-02-20 00:39:59 +03:00
|
|
|
public class UserAccountJson {
|
2025-02-19 22:47:56 +03:00
|
|
|
@Expose
|
|
|
|
|
public String email;
|
|
|
|
|
@Expose
|
|
|
|
|
public String name;
|
2025-02-20 00:39:59 +03:00
|
|
|
public UserAccountJson(String email_in, String name_in){
|
2025-02-19 22:47:56 +03:00
|
|
|
email = email_in;
|
|
|
|
|
name = name_in;
|
|
|
|
|
}
|
|
|
|
|
}
|