From fdffbee0aba883d57990ad97bade50a7b6cdd221 Mon Sep 17 00:00:00 2001 From: Philipp Stracker Date: Mon, 13 Jan 2025 19:04:02 +0100 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20New=20DTO=20to=20hold=20styling=20d?= =?UTF-8?q?etails?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/DTO/LocationStylingDTO.php | 85 +++++++++++++++++++ 1 file changed, 85 insertions(+) create mode 100644 modules/ppcp-settings/src/DTO/LocationStylingDTO.php diff --git a/modules/ppcp-settings/src/DTO/LocationStylingDTO.php b/modules/ppcp-settings/src/DTO/LocationStylingDTO.php new file mode 100644 index 000000000..14e4471ea --- /dev/null +++ b/modules/ppcp-settings/src/DTO/LocationStylingDTO.php @@ -0,0 +1,85 @@ +location = $location; + $this->enabled = $enabled; + $this->methods = $methods; + $this->shape = $shape; + $this->label = $label; + $this->color = $color; + } +}