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