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