sharee.bike-App/SharedBusinessLogic/Model/MiniSurvey/IQuestionModel.cs

17 lines
427 B
C#
Raw Normal View History

2022-08-30 15:42:25 +02:00
using System.Collections.Generic;
2024-04-09 12:53:23 +02:00
namespace ShareeBike.Model.MiniSurvey
2022-08-30 15:42:25 +02:00
{
2022-09-06 16:08:19 +02:00
public interface IQuestionModel
{
/// <summary> Holds the query description. </summary>
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>
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>
Dictionary<string, string> PossibleAnswers { get; }
}
2022-08-30 15:42:25 +02:00
}