aboutsummaryrefslogtreecommitdiffstats
path: root/vid-automation/src/main/java/vid/automation/test/model/User.java
blob: c4b06d4bc30a51aff0fcdcd9432db1d965721769 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package vid.automation.test.model;

import vid.automation.test.model.Credentials;

import java.util.ArrayList;

/**
 * Created by Oren on 7/16/17.
 */
public class User {
    public Credentials credentials;
    public ArrayList<String> subscribers;
    public ArrayList<String> serviceTypes;
    public ArrayList<String> tenants;
}