using System.Runtime.Serialization;
namespace TINK.Repository.Response
{
[DataContract]
public class BikeInfoAvailable : BikeInfoBase
{
///
/// Position of the bike.
///
[DataMember]
public GpsInfo gps { get; private set; }
[DataMember]
/// Full advertisement name.
public string Ilockit_ID { get; private set; }
[DataMember]
/// Full advertisement name.
public string Ilockit_GUID { get; private set; }
}
}