30 lines
1.1 KiB
C#
30 lines
1.1 KiB
C#
using System.Collections.Generic;
|
|
using Manager.DTOs;
|
|
using ManagerService.Data.SubSection;
|
|
using ManagerService.DTOs;
|
|
|
|
namespace ManagerService.DTOs
|
|
{
|
|
public class GuidedStepDTO
|
|
{
|
|
public string id { get; set; }
|
|
public string guidedPathId { get; set; }
|
|
public int? order { get; set; }
|
|
public List<TranslationDTO> title { get; set; }
|
|
public List<TranslationDTO> description { get; set; }
|
|
public GeometryDTO geometry { get; set; }
|
|
public bool isGeoTriggered { get; set; }
|
|
public double? zoneRadiusMeters { get; set; }
|
|
public string imageUrl { get; set; }
|
|
public List<TranslationDTO> audioIds { get; set; }
|
|
public List<ContentDTO> contents { get; set; }
|
|
public List<TranslationDTO> factContent { get; set; }
|
|
public bool isHiddenInitially { get; set; }
|
|
public bool isStepTimer { get; set; }
|
|
public bool isStepLocked { get; set; }
|
|
public int? timerSeconds { get; set; }
|
|
public List<TranslationDTO> timerExpiredMessage { get; set; }
|
|
public List<QuizQuestion> quizQuestions { get; set; }
|
|
}
|
|
}
|