From b91bf7921bc17136b2921b86ab3ea07ad70ccb64 Mon Sep 17 00:00:00 2001 From: Thomas Fransolet Date: Fri, 29 Dec 2023 14:05:55 +0100 Subject: [PATCH] Add rows and cols for PuzzleDTO --- Manager.Interfaces/DTO/SubSection/PuzzleDTO.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Manager.Interfaces/DTO/SubSection/PuzzleDTO.cs b/Manager.Interfaces/DTO/SubSection/PuzzleDTO.cs index 435ee37..a70bdb6 100644 --- a/Manager.Interfaces/DTO/SubSection/PuzzleDTO.cs +++ b/Manager.Interfaces/DTO/SubSection/PuzzleDTO.cs @@ -10,5 +10,7 @@ namespace Manager.Interfaces.DTO public List messageDebut { get; set; } public List messageFin { get; set; } public ContentDTO image { get; set; } // But only image is possible + public int rows { get; set; } = 3; + public int cols { get; set; } = 3; } }