From 23a46b4be35277e06ec89f48730eeb694e686be8 Mon Sep 17 00:00:00 2001
From: Kenmegne <stephanie.kenmegne@gmail.com>
Date: Thu, 18 Jun 2026 15:40:06 +0000
Subject: [PATCH] add fdx-commons and fdx-consultation
---
apifdxweb/api/apifdxweb-model/src/main/java/com/megatim/apifdxweb/model/dtos/administration/UserSlimDto.java | 71 +++++++++++++++++++++++++++++++++++
1 files changed, 71 insertions(+), 0 deletions(-)
diff --git a/apifdxweb/api/apifdxweb-model/src/main/java/com/megatim/apifdxweb/model/dtos/administration/UserSlimDto.java b/apifdxweb/api/apifdxweb-model/src/main/java/com/megatim/apifdxweb/model/dtos/administration/UserSlimDto.java
new file mode 100644
index 0000000..024dc48
--- /dev/null
+++ b/apifdxweb/api/apifdxweb-model/src/main/java/com/megatim/apifdxweb/model/dtos/administration/UserSlimDto.java
@@ -0,0 +1,71 @@
+/*
+ * 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;
+ }
+
+
+}
--
Gitblit v1.10.0