mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
e321764119
Minor fiexes.
40 lines
896 B
C#
40 lines
896 B
C#
using System.Collections.Generic;
|
|
|
|
namespace TINK.Model.MiniSurvey
|
|
|
|
{
|
|
public class MiniSurveyModel
|
|
{
|
|
public enum Type
|
|
{
|
|
SingleAnswer,
|
|
CustomText
|
|
}
|
|
public class QuestionModel
|
|
{
|
|
public QuestionModel()
|
|
{
|
|
PossibleAnswers = new Dictionary<string, string>();
|
|
}
|
|
|
|
public string Text { get; set; }
|
|
|
|
public Type Type { get; set; }
|
|
|
|
public Dictionary<string, string> PossibleAnswers { get; private set; }
|
|
}
|
|
|
|
public MiniSurveyModel()
|
|
{
|
|
Questions = new Dictionary<string, QuestionModel>();
|
|
}
|
|
|
|
public string Title { get; set; }
|
|
|
|
public string Subtitle { get; set; }
|
|
|
|
public string Footer { get; set; }
|
|
|
|
public Dictionary<string, QuestionModel> Questions { get; }
|
|
}
|
|
}
|