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

21 lines
728 B
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? sectionMapId { get; set; }
public string? sectionEventId { get; set; }
public string? sectionGameId { get; set; }
public bool isLinear { get; set; }
public bool requireSuccessToAdvance { get; set; }
public bool hideNextStepsUntilComplete { get; set; }
public int order { get; set; }
public List<GuidedStepDTO> steps { get; set; }
}
}