using ManagerService.DTOs; using System.Collections.Generic; using static ManagerService.Data.SubSection.SectionGame; namespace Manager.DTOs { public class GameDTO : SectionDTO { public List messageDebut { get; set; } public List messageFin { get; set; } public ResourceDTO? puzzleImage { get; set; } // But only image is possible public string puzzleImageId { get; set; } // But only image is possible public int rows { get; set; } = 3; public int cols { get; set; } = 3; public GameTypes gameType { get; set; } = GameTypes.Puzzle; } }