using System.Collections.Generic;
namespace TINK.Model.MiniSurvey
{
public interface IQuestionModel
{
/// Holds the query description.
string Text { get; set; }
/// Holds the type of the question.
MiniSurveyModel.Type Type { get; set; }
/// Holds the collection of possible answers.
Dictionary PossibleAnswers { get; }
}
}