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

com.commercetools.sunrise.search.pagination.viewmodels.EntriesPerPageSelectorViewModel Maven / Gradle / Ivy

The newest version!
package com.commercetools.sunrise.search.pagination.viewmodels;

import com.commercetools.sunrise.framework.viewmodels.forms.FormSelectableOptionViewModel;
import com.commercetools.sunrise.framework.viewmodels.ViewModel;

import java.util.List;

public class EntriesPerPageSelectorViewModel extends ViewModel {

    private String key;
    private List list;

    public EntriesPerPageSelectorViewModel() {
    }

    public String getKey() {
        return key;
    }

    public void setKey(final String key) {
        this.key = key;
    }

    public List getList() {
        return list;
    }

    public void setList(final List list) {
        this.list = list;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy