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

17 lines
573 B
C#
Raw Normal View History

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
{
[DataContract]
public class BikeInfoAvailable : BikeInfoBase
{
2022-08-30 15:42:25 +02:00
/// <summary>Mini survey for bikes which were rented before and for which feedback is pending.</summary>
2021-05-13 20:03:07 +02:00
[DataMember]
2022-08-30 15:42:25 +02:00
public MiniSurveyResponse user_miniquery { get; private set; }
2021-05-13 20:03:07 +02:00
2022-08-30 15:42:25 +02:00
/// <summary> Information about Co2- saving for bikes which were rented before and for which feedback is pending.</summary>
2021-05-13 20:03:07 +02:00
[DataMember]
2022-08-30 15:42:25 +02:00
public string co2saving { get; private set; }
2021-05-13 20:03:07 +02:00
}
}