a08b585b52a499b3cfe8a2468ca05532af511569
[vid.git] / vid-app-common / src / main / java / org / onap / vid / model / SubscriberList.java
1 package org.onap.vid.model;
2
3 import org.onap.portalsdk.core.web.support.UserUtils;
4
5 import java.util.List;
6
7 /**
8  * Created by Oren on 7/4/17.
9  */
10 public class SubscriberList {
11     public SubscriberList(List<Subscriber> customer) {
12         this.customer = customer;
13     }
14
15     public SubscriberList(){}
16
17     public List<Subscriber> customer;
18
19
20 }