2021-05-13 20:03:07 +02:00
|
|
|
|
using System.Runtime.Serialization;
|
|
|
|
|
|
2021-06-26 20:57:55 +02:00
|
|
|
|
namespace TINK.Repository.Response
|
2021-05-13 20:03:07 +02:00
|
|
|
|
{
|
2022-09-06 16:08:19 +02:00
|
|
|
|
[DataContract]
|
|
|
|
|
public class BikeInfoAvailable : BikeInfoBase
|
|
|
|
|
{
|
|
|
|
|
/// <summary>Mini survey for bikes which were rented before and for which feedback is pending.</summary>
|
|
|
|
|
[DataMember]
|
|
|
|
|
public MiniSurveyResponse user_miniquery { get; private set; }
|
2021-05-13 20:03:07 +02:00
|
|
|
|
|
2022-09-06 16:08:19 +02:00
|
|
|
|
/// <summary> Information about Co2- saving for bikes which were rented before and for which feedback is pending.</summary>
|
|
|
|
|
[DataMember]
|
|
|
|
|
public string co2saving { get; private set; }
|
|
|
|
|
}
|
2021-05-13 20:03:07 +02:00
|
|
|
|
}
|