using System.Collections.Generic; namespace TINK.Model.MiniSurvey { public class MiniSurveyModel { public enum Type { SingleAnswer, CustomText } public class QuestionModel { public QuestionModel() { PossibleAnswers = new Dictionary(); } public string Text { get; set; } public Type Type { get; set; } public Dictionary PossibleAnswers { get; private set; } } public MiniSurveyModel() { Questions = new Dictionary(); } public string Title { get; set; } public string Subtitle { get; set; } public string Footer { get; set; } public Dictionary Questions { get; } } }