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; }
|
|
}
|
|
}
|