sharee.bike-App/SharedBusinessLogic/ViewModel/MiniSurvey/Question/IMiniSurveyQuestion.cs
2024-04-09 12:53:23 +02:00

13 lines
384 B
C#

using System.Collections.Generic;
namespace ShareeBike.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; }
}
}