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

---
 fdx-consultation/fdxconsultation-model/src/main/java/com/megatim/fdxconsultation/model/dto/UserSlimDto.java |   42 ++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 42 insertions(+), 0 deletions(-)

diff --git a/fdx-consultation/fdxconsultation-model/src/main/java/com/megatim/fdxconsultation/model/dto/UserSlimDto.java b/fdx-consultation/fdxconsultation-model/src/main/java/com/megatim/fdxconsultation/model/dto/UserSlimDto.java
new file mode 100644
index 0000000..6a0c376
--- /dev/null
+++ b/fdx-consultation/fdxconsultation-model/src/main/java/com/megatim/fdxconsultation/model/dto/UserSlimDto.java
@@ -0,0 +1,42 @@
+/*
+ * 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.fdxconsultation.model.dto;
+
+import com.megatim.fdxcommons.model.enumeration.EtatOperation;
+import com.megatim.reporting.adhoc.annotations.PrintColumn;
+import java.util.Date;
+import lombok.Getter;
+import lombok.Setter;
+
+
+/**
+ *
+ * @author bissey
+ */
+@Getter
+@Setter
+public class UserSlimDto {
+    
+    private Long id;
+    private String userName;
+    private String firstName;
+    private String lastName;
+    private int expirationDelay;
+    private int alertDelay;
+    private int attempsNumber;
+    private int attemps;
+    private boolean locked;
+    private boolean active;
+    private boolean connected;
+    private int delaiInactivite;
+    private EtatOperation etatOperation;
+    private RoleSlimDto role;
+    private Date dateCreation;
+    private String utilisateurCreation;
+    private Date dateDerniereModification;
+    private String utilisateurModification;
+    
+}

--
Gitblit v1.10.0