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/InformationGeneraleDto.java | 24 ++++++++++++++++++++++++
1 files changed, 24 insertions(+), 0 deletions(-)
diff --git a/fdx-consultation/fdxconsultation-model/src/main/java/com/megatim/fdxconsultation/model/dto/InformationGeneraleDto.java b/fdx-consultation/fdxconsultation-model/src/main/java/com/megatim/fdxconsultation/model/dto/InformationGeneraleDto.java
new file mode 100644
index 0000000..ad608fa
--- /dev/null
+++ b/fdx-consultation/fdxconsultation-model/src/main/java/com/megatim/fdxconsultation/model/dto/InformationGeneraleDto.java
@@ -0,0 +1,24 @@
+/*
+ * 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 java.util.Date;
+import lombok.Getter;
+import lombok.Setter;
+
+
+/**
+ * Classe representant un DTO de InformationGeneraleDto
+ */
+@Getter
+@Setter
+public class InformationGeneraleDto {
+
+ private Date dateServeur = new Date();
+ private String sessionKeyUser;
+ private boolean etatServeur;
+ private String messageEtatServeur;
+}
\ No newline at end of file
--
Gitblit v1.10.0