mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
e321764119
Minor fiexes.
13 lines
411 B
C#
13 lines
411 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; }
|
|
}
|
|
}
|