using System.Collections.Generic; namespace TINK.Model.MiniSurvey { /// /// Holds mini survey. /// public class MiniSurveyModel { public enum Type { SingleAnswer, CustomText } public class QuestionModel { /// /// Holds the query description. /// public string Text { get; set; } public Type Type { get; set; } /// /// Holds the collection of possible answers. /// public Dictionary PossibleAnswers { get; private set; } = new Dictionary(); } public string Title { get; set; } public string Subtitle { get; set; } public string Footer { get; set; } public Dictionary Questions { get; } = new Dictionary(); } }