/* * 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.dtos.administration; /** * * @author bissey */ public class UserSlimDto { private Long id; private String userName; private String firstName; private String lastName; private boolean connected; public UserSlimDto() { } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getUserName() { return userName; } public void setUserName(String userName) { this.userName = userName; } public String getFirstName() { return firstName; } public void setFirstName(String firstName) { this.firstName = firstName; } public String getLastName() { return lastName; } public void setLastName(String lastName) { this.lastName = lastName; } public boolean isConnected() { return connected; } public void setConnected(boolean connected) { this.connected = connected; } }