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

35 lines
696 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-09-06 16:08:19 +02:00
[DataContract]
public class MiniSurveyResponse
{
[DataContract]
public class Question
{
[DataMember]
public string quest_text { get; private set; }
2021-08-01 17:24:15 +02:00
2022-09-06 16:08:19 +02:00
[DataMember]
public string type { get; private set; }
2021-08-01 17:24:15 +02:00
2022-09-06 16:08:19 +02:00
[DataMember]
public Dictionary<string, string> query { get; private set; }
}
2022-08-30 15:42:25 +02:00
2022-09-06 16:08:19 +02:00
[DataMember]
public string title { get; private set; }
2022-08-30 15:42:25 +02:00
2022-09-06 16:08:19 +02:00
[DataMember]
public string subtitle { get; private set; }
2022-08-30 15:42:25 +02:00
2022-09-06 16:08:19 +02:00
[DataMember]
public string footer { get; private set; }
2022-08-30 15:42:25 +02:00
2022-09-06 16:08:19 +02:00
[DataMember]
public Dictionary<string, Question> questions { get; private set; }
}
2021-08-01 17:24:15 +02:00
}