sharee.bike-App/TINKLib/Model/MiniSurvey/IQuestionModel.cs
Anja Müller-Meißner 0468955d49 Version 3.0.338
2022-09-08 09:55:14 +02:00

17 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; }
}
}