Add rows and cols for PuzzleDTO

This commit is contained in:
Thomas Fransolet 2023-12-29 14:05:55 +01:00
parent 4954d2ce44
commit b91bf7921b

View File

@ -10,5 +10,7 @@ namespace Manager.Interfaces.DTO
public List<TranslationAndResourceDTO> messageDebut { get; set; }
public List<TranslationAndResourceDTO> 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;
}
}