sharee.bike-App/SharedBusinessLogic/ViewModel/MiniSurvey/Question/IMiniSurveyQuestion.cs

14 lines
384 B
C#
Raw Normal View History

2021-08-01 17:24:15 +02:00
using System.Collections.Generic;
2024-04-09 12:53:23 +02:00
namespace ShareeBike.ViewModel.MiniSurvey.Question
2021-08-01 17:24:15 +02:00
{
2022-09-06 16:08:19 +02:00
public interface IMiniSurveyQuestion
{
/// <summary> Holds the question with key asked to user. </summary>
KeyValuePair<string, string> Question { get; }
2021-08-01 17:24:15 +02:00
2022-09-06 16:08:19 +02:00
/// <summary> Holds the users selected answer with its option key. </summary>
KeyValuePair<string, string> Answer { get; }
}
2021-08-01 17:24:15 +02:00
}