2026-03-04 16:36:13 +01:00

19 lines
724 B
C#

using ManagerService.DTOs;
using System.Collections.Generic;
using static ManagerService.Data.SubSection.SectionGame;
namespace Manager.DTOs
{
public class GameDTO : SectionDTO
{
public List<TranslationAndResourceDTO> messageDebut { get; set; }
public List<TranslationAndResourceDTO> 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;
public List<GuidedPathDTO> guidedPaths { get; set; }
}
}