16 lines
540 B
C#
16 lines
540 B
C#
using ManagerService.DTOs;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Manager.DTOs
|
|
{
|
|
public class PuzzleDTO : 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;
|
|
}
|
|
}
|