26 lines
1.0 KiB
C#
26 lines
1.0 KiB
C#
using System.Collections.Generic;
|
|
|
|
namespace ManagerService.DTOs
|
|
{
|
|
public class GuidedPathDTO
|
|
{
|
|
public string id { get; set; }
|
|
public string instanceId { get; set; }
|
|
public List<TranslationDTO> title { get; set; }
|
|
public List<TranslationDTO> description { get; set; }
|
|
public string? sectionEventId { get; set; }
|
|
public string? sectionParcoursId { get; set; }
|
|
public bool isLinear { get; set; }
|
|
public bool requireSuccessToAdvance { get; set; }
|
|
public bool hideNextStepsUntilComplete { get; set; }
|
|
public int? estimatedDurationMinutes { get; set; }
|
|
public string? imageResourceId { get; set; }
|
|
public string? imageUrl { get; set; }
|
|
public int? order { get; set; }
|
|
public bool isGameMode { get; set; }
|
|
public List<TranslationAndResourceDTO> gameMessageDebut { get; set; }
|
|
public List<TranslationAndResourceDTO> gameMessageFin { get; set; }
|
|
public List<GuidedStepDTO> steps { get; set; }
|
|
}
|
|
}
|