15 lines
452 B
C#
15 lines
452 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 ContentDTO image { get; set; } // But only image is possible
|
|
public int rows { get; set; } = 3;
|
|
public int cols { get; set; } = 3;
|
|
}
|
|
}
|