using System.Collections.Generic; namespace TINK.Model.MiniSurvey { /// /// Holds mini survey. /// public class MiniSurveyModel : IMiniSurveyModel { public MiniSurveyModel(Dictionary questions = null) { Questions = questions ?? new Dictionary(); } public enum Type { SingleAnswer, CustomText } /// Holds the title of the mini survey. public string Title { get; set; } /// Holds the sub title of the mini survey. public string Subtitle { get; set; } /// Holds the footer of the mini survey. public string Footer { get; set; } /// Holds the questions. public IDictionary Questions { get; } } }