package pwc.taxtech.atms.dto.user;

import java.util.List;

public class UserRoleSaveDto {
    
    private String roleID;
    private String serviceTypeID;
    private List<String> userIdList;
    /**
     * @return the roleID
     */
    public String getRoleID() {
        return roleID;
    }
    /**
     * @param roleID the roleID to set
     */
    public void setRoleID(String roleID) {
        this.roleID = roleID;
    }
    /**
     * @return the serviceTypeID
     */
    public String getServiceTypeID() {
        return serviceTypeID;
    }
    /**
     * @param serviceTypeID the serviceTypeID to set
     */
    public void setServiceTypeID(String serviceTypeID) {
        this.serviceTypeID = serviceTypeID;
    }
    /**
     * @return the userIdList
     */
    public List<String> getUserIdList() {
        return userIdList;
    }
    /**
     * @param userIdList the userIdList to set
     */
    public void setUserIdList(List<String> userIdList) {
        this.userIdList = userIdList;
    }
    
    
}