com.wizzdi.messaging.response.UnreadMessagesSummary Maven / Gradle / Ivy
package com.wizzdi.messaging.response;
import java.util.ArrayList;
import java.util.List;
public class UnreadMessagesSummary {
private List items=new ArrayList<>();
private long total;
public List getItems() {
return items;
}
public T setItems(List items) {
this.items = items;
return (T) this;
}
public long getTotal() {
return total;
}
public T setTotal(long total) {
this.total = total;
return (T) this;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy