20 lines
677 B
C#
20 lines
677 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 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; }
|
|
}
|
|
}
|