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; } }