13 lines
314 B
Java
13 lines
314 B
Java
|
|
package _VisualDVM.ComponentsServer.Recipient.Json;
|
||
|
|
import com.google.gson.annotations.Expose;
|
||
|
|
public class RecipientJson {
|
||
|
|
@Expose
|
||
|
|
public String email;
|
||
|
|
@Expose
|
||
|
|
public String name;
|
||
|
|
public RecipientJson(String email_in, String name_in){
|
||
|
|
email = email_in;
|
||
|
|
name = name_in;
|
||
|
|
}
|
||
|
|
}
|