mirror of
https://dev.azure.com/TeilRad/sharee.bike%20App/_git/Code
synced 2024-11-04 18:26:25 +01:00
16 lines
525 B
C#
16 lines
525 B
C#
using System.Runtime.Serialization;
|
|
|
|
namespace TINK.Repository.Response
|
|
{
|
|
[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; }
|
|
|
|
/// <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; }
|
|
}
|
|
}
|