2025-11-27 16:19:00 +01:00

18 lines
663 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;
}
}