mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
16 lines
421 B
C#
16 lines
421 B
C#
using System.Collections.Generic;
|
|
|
|
namespace TINK.Model.MiniSurvey
|
|
{
|
|
public interface IQuestionModel
|
|
{
|
|
/// <summary> Holds the query description. </summary>
|
|
string Text { get; set; }
|
|
|
|
/// <summary> Holds the type of the question. </summary>
|
|
MiniSurveyModel.Type Type { get; set; }
|
|
|
|
/// <summary>Holds the collection of possible answers.</summary>
|
|
Dictionary<string, string> PossibleAnswers { get; }
|
|
}
|
|
}
|