using System.Collections.Generic;
namespace TINK.ViewModel.MiniSurvey.Question
{
public interface IMiniSurveyQuestion
{
/// Holds the question with key asked to user.
KeyValuePair Question { get; }
/// Holds the users selected answer with its option key.
KeyValuePair Answer { get; }
}
}