using System.Runtime.Serialization; namespace TINK.Repository.Response { [DataContract] public class BikeInfoAvailable : BikeInfoBase { /// Mini survey for bikes which were rented before and for which feedback is pending. [DataMember] public MiniSurveyResponse user_miniquery { get; private set; } /// Information about Co2- saving for bikes which were rented before and for which feedback is pending. [DataMember] public string co2saving { get; private set; } } }