package pwc.taxtech.atms.dto.role;

public class UpdateRolePermissionDto {

    private String id;
    private String name;
    private String PLevel;

    /**
     * @return the id
     */
    public String getId() {
        return id;
    }

    /**
     * @param id the id to set
     */
    public void setId(String id) {
        this.id = id;
    }

    /**
     * @return the name
     */
    public String getName() {
        return name;
    }

    /**
     * @param name the name to set
     */
    public void setName(String name) {
        this.name = name;
    }

    /**
     * @return the pLevel
     */
    public String getPLevel() {
        return PLevel;
    }

    /**
     * @param pLevel the pLevel to set
     */
    public void setPLevel(String pLevel) {
        PLevel = pLevel;
    }


}