package com.example.agathe.tsgtest.carpooling;
import com.example.agathe.tsgtest.dto.Contact;
import com.example.agathe.tsgtest.dto.ManualTrip;
import java.util.List;
/**
* Created by agathe on 19/12/16.
*/
public class ListContacts {
public List<Contact> contacts;
public List<Contact> getContacts() {
return contacts;
}
public void setContacts(List<Contact> contacts) {
this.contacts = contacts;
}
@Override
public String toString() {
return "ListContacts{" +
"contacts=" + contacts +
'}';
}
}