using System.Runtime.Serialization; namespace TINK.Repository.Response { /// /// Holds info about a single bike. /// [DataContract] public class GpsInfo { /// /// Latitude position of the bike. /// [DataMember] public string latitude { get; private set; } /// /// Longitude position of the bike. /// [DataMember] public string longitude { get; private set; } } }