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

io.robe.admin.dto.PermissionUpdateDto Maven / Gradle / Ivy

There is a newer version: 0.5.0.0-1039
Show newest version
package io.robe.admin.dto;

import java.util.List;

/**
 * Created by hasanmumin on 08/04/16.
 */
public class PermissionUpdateDto {

    private List menus;
    private List services;

    public List getMenus() {
        return menus;
    }

    public void setMenus(List menus) {
        this.menus = menus;
    }

    public List getServices() {
        return services;
    }

    public void setServices(List services) {
        this.services = services;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy