using System.Collections.Generic;
namespace TINK.Model.MiniSurvey
{
public interface IMiniSurveyModel
{
/// Holds the title of the mini survey.
string Title { get; set; }
/// Holds the sub title of the mini survey.
string Subtitle { get; set; }
/// Holds the footer of the mini survey.
string Footer { get; set; }
/// Holds the questions.
IDictionary Questions { get; }
}
}