sharee.bike-App/TINKLib/ViewModel/MiniSurvey/Question/IMiniSurveyQuestion.cs
Anja Müller-Meißner 0468955d49 Version 3.0.338
2022-09-08 09:55:14 +02:00

14 lines
378 B
C#

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