using Manager.Interfaces.Models; using System; using System.Collections.Generic; using System.Text; namespace Manager.Interfaces.DTO { public class PuzzleDTO { 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; } }