/*
|
* 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<ActionSlimDto> actions = new ArrayList<>();
|
|
public List<ActionSlimDto> getActions() {
|
return actions;
|
}
|
|
public void setActions(List<ActionSlimDto> actions) {
|
this.actions = actions;
|
}
|
|
|
}
|