sharee.bike-App/SharedBusinessLogic/Model/MiniSurvey/QuestionModel.cs
2024-04-09 12:53:23 +02:00

17 lines
509 B
C#

using System.Collections.Generic;
namespace ShareeBike.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>();
}
}