10 lines
244 B
Java
10 lines
244 B
Java
|
|
package _VisualDVM.ComponentsServer.Recipient.Json;
|
||
|
|
import com.google.gson.annotations.Expose;
|
||
|
|
|
||
|
|
import java.util.List;
|
||
|
|
import java.util.Vector;
|
||
|
|
public class RecipientsJson {
|
||
|
|
@Expose
|
||
|
|
public List<RecipientJson> values = new Vector<>();
|
||
|
|
}
|