sharee.bike-App/TINKLib/Model/MiniSurvey/QuestionModel.cs

17 lines
503 B
C#
Raw Normal View History

2022-08-30 15:42:25 +02:00
using System.Collections.Generic;
namespace TINK.Model.MiniSurvey
{
2022-09-06 16:08:19 +02:00
public class QuestionModel : IQuestionModel
{
/// <summary> Holds the query description. </summary>
public string Text { get; set; }
2022-08-30 15:42:25 +02:00
2022-09-06 16:08:19 +02:00
/// <summary> Holds the type of the question. </summary>
public MiniSurveyModel.Type Type { get; set; }
2022-08-30 15:42:25 +02:00
2022-09-06 16:08:19 +02:00
/// <summary>Holds the collection of possible answers.</summary>
public Dictionary<string, string> PossibleAnswers { get; private set; } = new Dictionary<string, string>();
}
2022-08-30 15:42:25 +02:00
}