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/ActionSlimDto.java |  110 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 110 insertions(+), 0 deletions(-)

diff --git a/apifdxweb/api/apifdxweb-model/src/main/java/com/megatim/apifdxweb/model/dtos/administration/ActionSlimDto.java b/apifdxweb/api/apifdxweb-model/src/main/java/com/megatim/apifdxweb/model/dtos/administration/ActionSlimDto.java
new file mode 100644
index 0000000..a88527a
--- /dev/null
+++ b/apifdxweb/api/apifdxweb-model/src/main/java/com/megatim/apifdxweb/model/dtos/administration/ActionSlimDto.java
@@ -0,0 +1,110 @@
+/*
+ * 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;
+
+import com.megatim.fdxcommons.model.enumeration.TypeOperation;
+
+/**
+ *
+ * @author bissey
+ */
+public class ActionSlimDto {
+
+     private Long id;
+
+    private String path;
+
+    private String module;
+
+    private String name;
+
+    private String categorie;
+
+    private String description;
+
+    private Boolean autorise;
+
+    protected String idGenerer;
+
+    private TypeOperation typeOperation;
+
+    public ActionSlimDto() {
+    }
+
+    public Long getId() {
+        return id;
+    }
+
+    public void setId(Long id) {
+        this.id = id;
+    }
+
+    public String getPath() {
+        return path;
+    }
+
+    public void setPath(String path) {
+        this.path = path;
+    }
+
+    public String getModule() {
+        return module;
+    }
+
+    public void setModule(String module) {
+        this.module = module;
+    }
+
+    public String getName() {
+        return name;
+    }
+
+    public void setName(String name) {
+        this.name = name;
+    }
+
+    public String getCategorie() {
+        return categorie;
+    }
+
+    public void setCategorie(String categorie) {
+        this.categorie = categorie;
+    }
+
+    public String getDescription() {
+        return description;
+    }
+
+    public void setDescription(String description) {
+        this.description = description;
+    }
+
+    public Boolean getAutorise() {
+        return autorise;
+    }
+
+    public void setAutorise(Boolean autorise) {
+        this.autorise = autorise;
+    }
+
+    public String getIdGenerer() {
+        return idGenerer;
+    }
+
+    public void setIdGenerer(String idGenerer) {
+        this.idGenerer = idGenerer;
+    }
+
+    public TypeOperation getTypeOperation() {
+        return typeOperation;
+    }
+
+    public void setTypeOperation(TypeOperation typeOperation) {
+        this.typeOperation = typeOperation;
+    }
+
+    
+}

--
Gitblit v1.10.0