27 lines
1001 B
C#
27 lines
1001 B
C#
using System.Collections.Generic;
|
|
using Manager.DTOs;
|
|
using ManagerService.Data.SubSection;
|
|
|
|
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 double? zoneRadiusMeters { get; set; }
|
|
public string imageUrl { get; set; }
|
|
public int? triggerGeoPointId { get; set; }
|
|
public GeoPointDTO? triggerGeoPoint { 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; }
|
|
}
|
|
}
|