using System.Collections.Generic;
namespace TINK.Model.MiniSurvey
{
public class QuestionModel : IQuestionModel
{
/// Holds the query description.
public string Text { get; set; }
/// Holds the type of the question.
public MiniSurveyModel.Type Type { get; set; }
/// Holds the collection of possible answers.
public Dictionary PossibleAnswers { get; private set; } = new Dictionary();
}
}