All Downloads are FREE. Search and download functionalities are using the official Maven repository.

model.SignalSubscriberList Maven / Gradle / Ivy

There is a newer version: 1.3.9
Show newest version
package model;

import java.util.List;

public class SignalSubscriberList {

    private int offset;
    private int total;
    private boolean hasMore;
    private List data;

    public int getOffset() {
        return offset;
    }

    public void setOffset(int offset) {
        this.offset = offset;
    }

    public int getTotal() {
        return total;
    }

    public void setTotal(int total) {
        this.total = total;
    }

    public boolean isHasMore() {
        return hasMore;
    }

    public void setHasMore(boolean hasMore) {
        this.hasMore = hasMore;
    }

    public List getData() {
        return data;
    }

    public void setData(List data) {
        this.data = data;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy