sharee.bike-App/TINKLib/Repository/Response/MiniSurvey.cs

35 lines
834 B
C#
Raw Normal View History

2021-08-01 17:24:15 +02:00
using System.Collections.Generic;
using System.Runtime.Serialization;
namespace TINK.Repository.Response
{
2022-08-30 15:42:25 +02:00
[DataContract]
public class MiniSurveyResponse
{
2021-08-01 17:24:15 +02:00
[DataContract]
2022-08-30 15:42:25 +02:00
public class Question
2021-08-01 17:24:15 +02:00
{
[DataMember]
2022-08-30 15:42:25 +02:00
public string quest_text { get; private set; }
2021-08-01 17:24:15 +02:00
[DataMember]
2022-08-30 15:42:25 +02:00
public string type { get; private set; }
2021-08-01 17:24:15 +02:00
[DataMember]
2022-08-30 15:42:25 +02:00
public Dictionary<string, string> query { get; private set; }
2021-08-01 17:24:15 +02:00
}
2022-08-30 15:42:25 +02:00
[DataMember]
public string title { get; private set; }
[DataMember]
public string subtitle { get; private set; }
[DataMember]
public string footer { get; private set; }
[DataMember]
public Dictionary<string, Question> questions { get; private set; }
}
2021-08-01 17:24:15 +02:00
}