mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-05 10:36:30 +01:00
35 lines
922 B
C#
35 lines
922 B
C#
|
using System.Collections.Generic;
|
|||
|
using System.Runtime.Serialization;
|
|||
|
|
|||
|
namespace TINK.Repository.Response
|
|||
|
{
|
|||
|
[DataContract]
|
|||
|
public class MiniSurveyResponse
|
|||
|
{
|
|||
|
[DataContract]
|
|||
|
public class Question
|
|||
|
{
|
|||
|
[DataMember]
|
|||
|
public string quest_text { get; private set; }
|
|||
|
|
|||
|
[DataMember]
|
|||
|
public string type { get; private set; }
|
|||
|
|
|||
|
[DataMember]
|
|||
|
public Dictionary<string, string> query { get; private set; }
|
|||
|
}
|
|||
|
|
|||
|
[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; }
|
|||
|
}
|
|||
|
}
|