/* * To change this license header, choose License Headers in Project Properties. * To change this template file, choose Tools | Templates * and open the template in the editor. */ package com.megatim.apifdxweb.model.formodel; import com.megatim.apifdxweb.model.dtos.administration.ActionSlimDto; import java.util.ArrayList; import java.util.List; /** * * @author bissey */ public class RoleFormModel { List actions = new ArrayList<>(); public List getActions() { return actions; } public void setActions(List actions) { this.actions = actions; } }